We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f452de commit cf8a915Copy full SHA for cf8a915
lib/main.dart
@@ -74,18 +74,6 @@ Future<List<Directory>> getDirectories() async {
74
return [defaultDirectory, baseDirectory];
75
}
76
77
-Future builder(BuildContext context, AsyncSnapshot<Directory> snapshot) async {
78
- if (snapshot.hasData) {
79
- return ProfilesWidget(
80
- defaultDirectory: snapshot.data!,
81
- baseDirectory: snapshot.data!,
82
- child: const MyApp(),
83
- );
84
- } else {
85
- return const AppSetupPlaceholder();
86
- }
87
-}
88
-
89
Future init() async {
90
Loggy.initLoggy(logPrinter: const PrettyPrinter());
91
0 commit comments