This commit is contained in:
2023-08-29 12:30:33 +08:00
parent 321f3ac6f7
commit bb78a03046
2 changed files with 4 additions and 4 deletions

View File

@@ -18,7 +18,6 @@ final _router = GoRouter(
],
);
void main() async {
if (!kIsWeb) await prepareJar();
await preparePrefs();
@@ -30,6 +29,7 @@ class MainApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp.router(routerConfig: _router);
return MaterialApp.router(
routerConfig: _router, title: "E-Hentai Downloader Dashboard");
}
}