Skip to content

Instantly share code, notes, and snippets.

@happyharis
Created May 12, 2018 10:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save happyharis/644617196d353b4cbc9410fae9ac19ff to your computer and use it in GitHub Desktop.
Save happyharis/644617196d353b4cbc9410fae9ac19ff to your computer and use it in GitHub Desktop.
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