April 2020
Intermediate to advanced
380 pages
9h 24m
English
Now, we're going to create the final material app inside main.dart. Let's start with the following steps:
class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: 'Chess', theme: ThemeData(primarySwatch: Colors.blue,), home: MyHomePage(title: 'Chess'), ); }}
@overrideWidget build(BuildContext context) { return Scaffold( appBar: AppBar(title: Text('Chess'),), body: Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, ...Read now
Unlock full access