Advertisement
Guest User

Untitled

a guest
May 20th, 2019
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 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( // Buradan...
  7. primaryColor: Colors.white,
  8. ), // ... buraya kadar ekle.
  9. home: RandomWords(),
  10. );
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement