update readme and remove unneeded deps

This commit is contained in:
Henry Hiles 2026-02-02 21:48:08 +01:00
commit 06a25b89e6
No known key found for this signature in database
4 changed files with 20 additions and 40 deletions

View file

@ -1,18 +1,11 @@
import "package:flutter/material.dart";
import "package:flutter_riverpod/flutter_riverpod.dart";
import "package:nexus/controllers/secure_storage_controller.dart";
class SettingsPage extends ConsumerWidget {
const SettingsPage({super.key});
@override
Widget build(BuildContext context, WidgetRef ref) {
return Scaffold(
appBar: AppBar(title: Text("Settings")),
body: ElevatedButton(
onPressed: ref.watch(SecureStorageController.provider.notifier).clear,
child: Text("Log out"),
),
);
return Placeholder();
}
}