Created
May 12, 2018 10:47
-
-
Save happyharis/644617196d353b4cbc9410fae9ac19ff to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import './pages/landing_page.dart'; | |
void main() { | |
runApp(Tododo()); | |
} | |
class Tododo extends StatelessWidget { | |
@override | |
Widget build(BuildContext context){ | |
return MaterialApp( | |
theme: ThemeData( | |
primarySwatch: Colors.indigo, | |
), | |
home: LandingPage() | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment