Skip to content

Instantly share code, notes, and snippets.

@KingIdee
Last active April 15, 2020 13:37
Show Gist options
  • Save KingIdee/872a7b669bc58b3a4f397bb9b5a554e9 to your computer and use it in GitHub Desktop.
Save KingIdee/872a7b669bc58b3a4f397bb9b5a554e9 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
import 'package:flutterchatapp/login_page.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: LoginPage(),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment