changed settings page name

This commit is contained in:
Thibault Deckers 2020-09-04 22:10:49 +09:00
parent 48606a9e39
commit 68ce71e6d1
2 changed files with 2 additions and 2 deletions

View file

@ -207,7 +207,7 @@ class _AppDrawerState extends State<AppDrawer> {
Widget get settingsTile => NavTile( Widget get settingsTile => NavTile(
icon: AIcons.settings, icon: AIcons.settings,
title: 'Preferences', title: 'Settings',
routeName: SettingsPage.routeName, routeName: SettingsPage.routeName,
pageBuilder: (_) => SettingsPage(), pageBuilder: (_) => SettingsPage(),
); );

View file

@ -18,7 +18,7 @@ class SettingsPage extends StatelessWidget {
length: 4, length: 4,
child: Scaffold( child: Scaffold(
appBar: AppBar( appBar: AppBar(
title: Text('Preferences'), title: Text('Settings'),
), ),
body: SafeArea( body: SafeArea(
child: Consumer<Settings>( child: Consumer<Settings>(