September 2019
Beginner
512 pages
12h 52m
English
MyHomePage is a stateful widget, and so it is defined with a State object, _MyHomePageState, which contains properties that affect how the widget looks:
class MyHomePage extends statefulWidget { MyHomePage({Key key, this.title}) : super(key: key); final String title; @override _MyHomePageState createState() => _MyHomePageState();}
By extending statefulWidget, MyHomePage must return a valid State object in its createState() method. In our example, it returns an instance of _MyHomePageState.
The following _MyHomePageState ...
Read now
Unlock full access