Skip to content

Instantly share code, notes, and snippets.

@jacobaraujo7
Last active May 11, 2019 01:11
Show Gist options
  • Save jacobaraujo7/03181dc8900dd63cf314038796305fd1 to your computer and use it in GitHub Desktop.
Save jacobaraujo7/03181dc8900dd63cf314038796305fd1 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
import 'package:provider_test/src/home_page.dart';
import 'package:provider_test/src/home_value.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: HomePage(),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment