chore: use proper indentation on commented code in example

This commit is contained in:
Joey Boerwinkel 2025-03-11 14:43:42 +01:00
parent 6fbe1e67d2
commit 8cd808b158

View file

@ -19,7 +19,7 @@ class MyApp extends StatelessWidget {
useMaterial3: true, useMaterial3: true,
), ),
home: const MyHomePage(), home: const MyHomePage(),
// FutureBuilder( // home: FutureBuilder(
// future: Firebase.initializeApp( // future: Firebase.initializeApp(
// options: DefaultFirebaseOptions.currentPlatform, // options: DefaultFirebaseOptions.currentPlatform,
// ), // ),
@ -30,7 +30,8 @@ class MyApp extends StatelessWidget {
// ); // );
// } // }
// return const MyHomePage(); // return const MyHomePage();
// }), // },
// ),
); );
} }
} }