-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.dart
87 lines (82 loc) · 2.11 KB
/
main.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(primaryColor: Colors.indigo),
home: Scaffold(
backgroundColor: Colors.blueAccent,
appBar: AppBar(
title: Text('Counter'),
centerTitle: true,
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text(
'Tap "-" to decrement',
style: TextStyle(color: Colors.white),
),
SizedBox(height: 10,),
CounterWidget(),
SizedBox(height: 10,),
Text(
'Tap "+" to increment',
style: TextStyle(color: Colors.white),
)
],
),
),
),
);
}
}
class CounterWidget extends StatefulWidget {
@override
State<StatefulWidget> createState() {
return _CounterWidgetState();
}
}
class _CounterWidgetState extends State<CounterWidget> {
int _count = 50;
@override
Widget build(BuildContext context) {
return FittedBox(
child: Container(
decoration: BoxDecoration(
color: Colors.white.withOpacity(0.6),
borderRadius: BorderRadius.circular(5)),
child: Row(
children: <Widget>[
IconButton(
icon: const Icon(Icons.remove),
onPressed: () {
setState(() {
_count--;
});
},
),
Text(
'$_count',
style: TextStyle(
fontSize: 20,
),
),
IconButton(
icon: const Icon(Icons.add),
onPressed: () {
setState(() {
_count++;
});
},
)
],
),
),
);
}
}