lint cleanup

This commit is contained in:
Christien Rioux 2023-07-26 17:42:11 -04:00
parent fe9d9f8aca
commit 9fa1666e8b
22 changed files with 178 additions and 155 deletions

View file

@ -10,11 +10,11 @@ class LoginPage extends ConsumerWidget {
const LoginPage({super.key});
static const path = '/login';
void _onReorder(WidgetRef ref, int oldIndex, int newIndex) {
final accounts = ref.read(localAccountsProvider.notifier);
accounts.reorderAccount(oldIndex, newIndex);
// xxx fix this so we can await this properly, use FutureBuilder or whatever
}
// void _onReorder(WidgetRef ref, int oldIndex, int newIndex) {
// final accounts = ref.read(localAccountsProvider.notifier);
// accounts.reorderAccount(oldIndex, newIndex);
// // xxx fix this so we can await this properly, use FutureBuilder or whatever
// }
@override
Widget build(BuildContext context, WidgetRef ref) {
@ -52,7 +52,8 @@ class LoginPage extends ConsumerWidget {
// _onReorder(ref, oldIndex, newIndex),
// children: accountList.map<Widget>((account) {
// return AccountBubble(
// key: ValueKey(account.identityMaster.masterRecordKey),
// key: ValueKey(
// account.identityMaster.masterRecordKey),
// account: account);
// }).toList(),
// )),