Skip to content

Instantly share code, notes, and snippets.

@ijoschek
Last active December 5, 2018 08:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ijoschek/c4ccfff9d24878a51256ba5fed95000e to your computer and use it in GitHub Desktop.
Save ijoschek/c4ccfff9d24878a51256ba5fed95000e to your computer and use it in GitHub Desktop.
flutter_firestore_tut
import 'package:flutter/material.dart';
import 'home.dart';
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Auth Tutorial',
theme: ThemeData(
// theme of our application.
primaryColor: Colors.lightGreen,
primaryColorDark: Colors.green,
accentColor: Colors.yellowAccent,
),
home: Home(),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment