Skip to content

Instantly share code, notes, and snippets.

@iabhishek07
Created August 13, 2020 17:27
Show Gist options
  • Save iabhishek07/ee08ef1eb00af357edf1f27a955a65e5 to your computer and use it in GitHub Desktop.
Save iabhishek07/ee08ef1eb00af357edf1f27a955a65e5 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
import 'home_page.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Gumao',
theme: ThemeData(
primarySwatch: Colors.blue,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: HomePage(),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment