-
Notifications
You must be signed in to change notification settings - Fork 0
/
Stateful.dart
35 lines (30 loc) · 883 Bytes
/
Stateful.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Stateful Widget',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Home'), // To set a value to a class
);
}
}
class MyHomePage extends StatefulWidget {
final String title;
// MyHomePage({this.title})
// MyHomePage(this.title)
// MyHomePage({@required this.title = 'Flutter is cool'})
MyHomePage({Key key, @required this.title}) : super(key: key);
@override
_MyHomePageState createState() => new _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Material(
child: Text(widget.title), // To access the variable from parent class.
);
}
}