-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.dart
93 lines (88 loc) · 2.65 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
88
89
90
91
92
93
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
int kilometer = 0;
int punkte = 0;
int eingegebenerwert = 0;
int gesamtpunkte = 0;
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'points4riding',
theme: ThemeData(primarySwatch: Colors.blue),
home: Scaffold(
appBar: AppBar(
title: Text(
'Points4Ride $gesamtpunkte',
),
),
body: Padding(
padding: const EdgeInsets.symmetric(vertical: 50),
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Text(
'Du hast schon $kilometer Kilometer zurückgelegt',
style: TextStyle(fontSize: 35),
textAlign: TextAlign.center,
),
TextField(
onChanged: (value) {
setState(() {
eingegebenerwert = int.parse(value);
});
},
decoration: InputDecoration(
border: OutlineInputBorder(),
),
),
Padding(
padding: const EdgeInsets.all(8.0),
child: TextButton(
child: Text(
'Eingabe',
style: TextStyle(fontSize: 40.0),
),
onPressed: () {
setState(() {
kilometer = kilometer + eingegebenerwert;
punkte = kilometer * 2;
});
},
),
),
Padding(
padding: const EdgeInsets.all(20.0),
child: Text(
'Insgesamt hast du $punkte Punkte gesammelt.',
style: TextStyle(fontSize: 35),
textAlign: TextAlign.center,
),
),
Padding(
padding: const EdgeInsets.all(35.0),
child: FloatingActionButton.extended(
backgroundColor: Colors.blue,
foregroundColor: Colors.black,
onPressed: () {
setState(() {
gesamtpunkte = punkte;
});
},
label: Text('Aktualisieren'),
),
),
],
),
),
),
);
}
}