From c5a564a4cde00de7a00fba7bde544c1071ab1565 Mon Sep 17 00:00:00 2001 From: Kima Date: Tue, 12 Mar 2024 22:59:51 +0100 Subject: [PATCH] remove unused notes button --- .../lib/screens/settings/settings_screen.dart | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/refilc_mobile_ui/lib/screens/settings/settings_screen.dart b/refilc_mobile_ui/lib/screens/settings/settings_screen.dart index 5dcc6c6..33c9840 100644 --- a/refilc_mobile_ui/lib/screens/settings/settings_screen.dart +++ b/refilc_mobile_ui/lib/screens/settings/settings_screen.dart @@ -257,7 +257,7 @@ class SettingsScreenState extends State Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ - Row( + const Row( mainAxisAlignment: MainAxisAlignment.start, children: [ // IconButton( @@ -270,22 +270,22 @@ class SettingsScreenState extends State // const SizedBox( // width: 5, // ), - const SizedBox( - width: 5.0, - ), - IconButton( - splashRadius: 32.0, - // onPressed: () async => await databaseProvider.userStore - // .storeSelfNotes([], userId: user.id!), - onPressed: () async => _openNotes( - context, - await databaseProvider.userQuery - .toDoItems(userId: user.id!), - ), - // _showBottomSheet(user.getUser(user.id ?? "")), - icon: Icon(FeatherIcons.fileText, - color: AppColors.of(context).text.withOpacity(0.8)), - ), + // const SizedBox( + // width: 5.0, + // ), + // IconButton( + // splashRadius: 32.0, + // // onPressed: () async => await databaseProvider.userStore + // // .storeSelfNotes([], userId: user.id!), + // onPressed: () async => _openNotes( + // context, + // await databaseProvider.userQuery + // .toDoItems(userId: user.id!), + // ), + // // _showBottomSheet(user.getUser(user.id ?? "")), + // icon: Icon(FeatherIcons.fileText, + // color: AppColors.of(context).text.withOpacity(0.8)), + // ), ], ), Row(