Skip to content

Instantly share code, notes, and snippets.

@fabiojansenbr
Created December 5, 2019 15:42
Show Gist options
  • Save fabiojansenbr/7f2c419b11e4bbde5d40c1c620ed7621 to your computer and use it in GitHub Desktop.
Save fabiojansenbr/7f2c419b11e4bbde5d40c1c620ed7621 to your computer and use it in GitHub Desktop.
import 'package:api_to_sqlite_flutter/src/pages/home_page.dart';
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
initialRoute: 'home',
routes: {
'home': (BuildContext context) => HomePage(),
},
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment