Skip to content

Instantly share code, notes, and snippets.

@sbis04

sbis04/main.dart Secret

Created May 18, 2021 03:10
Show Gist options
  • Save sbis04/433335ce673af8dd748c6187fc6db1c7 to your computer and use it in GitHub Desktop.
Save sbis04/433335ce673af8dd748c6187fc6db1c7 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
import 'package:flutterfire_samples/screens/login_screen.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'FlutterFire Samples',
debugShowCheckedModeBanner: false,
theme: ThemeData(
primarySwatch: Colors.indigo,
brightness: Brightness.dark,
),
home: LoginScreen(),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment