Guest User

Untitled

a guest
Jul 21st, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. class MyApp extends StatelessWidget {
  2. @override
  3. Widget build(BuildContext context) {
  4. return MaterialApp(
  5. title: 'Startup Name Generator',
  6. theme: ThemeData(
  7. primaryColor: Colors.white,
  8. ),
  9. home: RandomWords(),
  10. );
  11. }
  12. }
Add Comment
Please, Sign In to add comment