Skip to content

Instantly share code, notes, and snippets.

@rodolfofranco
Created May 23, 2020 23:48
Show Gist options
  • Save rodolfofranco/bdf11a1b9dc33cf995701dead05f7b9f to your computer and use it in GitHub Desktop.
Save rodolfofranco/bdf11a1b9dc33cf995701dead05f7b9f to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
import 'home.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,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: Home()
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment