theme.dart
file that specifies the primary ThemeData.
MyStatefulWidget
class manages its own state, so it overrides createState()
to create the State object. The framework calls createState()
when it wants to build the widget. In this example, createState()
creates an instance of _MyStatefulWidgetState
, which is implemented in the next step.