Skip to content

Latest commit

 

History

History
15 lines (15 loc) · 374 Bytes

8.md

File metadata and controls

15 lines (15 loc) · 374 Bytes
  1. Change app theme
class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Startup Name Generator',
      theme: ThemeData(          // Add the 3 lines from here... 
        primaryColor: Colors.white,
      ),                         // ... to here.
      home: RandomWords(),
    );
  }
}