Skip to content

Instantly share code, notes, and snippets.

@ijoschek
Last active December 5, 2018 08:54
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/d30fcd2c93e6dda54a9b9d1640c0a46c to your computer and use it in GitHub Desktop.
Save ijoschek/d30fcd2c93e6dda54a9b9d1640c0a46c to your computer and use it in GitHub Desktop.
flutter_auth_tut
import 'package:flutter/material.dart';
import 'home.dart';
class StartApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Auth Tutorial',
theme: ThemeData(
// theme of our application.
primaryColor: Colors.lightBlue,
primaryColorDark: Colors.blue,
accentColor: Colors.orange,
),
home: Home(),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment