-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFlatButton.dart
45 lines (40 loc) · 913 Bytes
/
FlatButton.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
36
37
38
39
40
41
42
43
44
45
import 'package:flutter/material.dart';
void main() {
runApp(new MaterialApp(
home: new MyApp(),
));
}
class MyApp extends StatefulWidget {
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
String _value = "Flat Button";
void _onPressed() {
setState(() {
_value = "Flat Button Clicked";
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: new AppBar(
title: new Text("My App"),
),
body: Center(
child: new Container(
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
new Text(_value),
new FlatButton(
onPressed: _onPressed,
child: new Text("Click Flat Button"),
),
],
),
),
),
);
}
}