Basic Firebase setup

This commit is contained in:
2020-10-14 21:59:53 +01:00
parent 75ad6bb58d
commit f8ccc79847
6 changed files with 170 additions and 2 deletions

14
lib/views/loading.dart Normal file
View File

@@ -0,0 +1,14 @@
import 'package:flutter/material.dart';
class Loading extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: SafeArea(
child: Center(child: CircularProgressIndicator()),
),
),
);
}
}