diff --git a/lib/util/drawer.dart b/lib/util/drawer.dart index 9fe300a..6d68719 100644 --- a/lib/util/drawer.dart +++ b/lib/util/drawer.dart @@ -43,7 +43,7 @@ Drawer genDrawer(int page, BuildContext context) => Drawer( ), ListTile( selected: page == 1, - title: const Text("Home"), + title: Text(AppLocalizations.of(context)!.home), leading: const Icon(Icons.home), onTap: () => page == 1 ? Navigator.of(context).pop()