mirror of
https://github.com/kevin-DL/commander_league_flutter.git
synced 2026-01-14 11:44:47 +00:00
Basic Firebase setup
This commit is contained in:
14
lib/views/loading.dart
Normal file
14
lib/views/loading.dart
Normal 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()),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user