-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpract2calculator.dart
115 lines (106 loc) · 3.21 KB
/
pract2calculator.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
import 'package:flutter/material.dart';
void main() {
runApp(MaterialApp(
debugShowCheckedModeBanner: false,
home: MyApp(),
));
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
TextEditingController controller1 = TextEditingController();
TextEditingController controller2 = TextEditingController();
int? num1 = 0, num2 = 0, result = 0;
add() {
setState(() {
num1 = int.tryParse(controller1.text);
num2 = int.tryParse(controller2.text);
result = (num1 ?? 0) + (num2 ?? 0);
});
}
sub() {
setState(() {
num1 = int.tryParse(controller1.text);
num2 = int.tryParse(controller2.text);
result = (num1 ?? 0) - (num2 ?? 0);
});
}
mul() {
setState(() {
num1 = int.tryParse(controller1.text);
num2 = int.tryParse(controller2.text);
result = (num1 ?? 0) * (num2 ?? 0);
});
}
div() {
setState(() {
num1 = int.tryParse(controller1.text);
num2 = int.tryParse(controller2.text);
if (num2 == 0) {
result = null; // handle division by zero
} else {
result = (num1 ?? 0) ~/ (num2 ?? 1);
}
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Simple Calculator'),
backgroundColor: Colors.blue.shade900,
),
body: Padding(
padding: EdgeInsets.all(15.0),
child: Column(
children: [
Text(
result == null ? 'Error: Division by zero' : 'Result is: $result',
style: TextStyle(fontSize: 20, color: Colors.blue.shade700),
),
SizedBox(height: 15),
TextField(
controller: controller1,
keyboardType: TextInputType.number,
decoration: InputDecoration(
labelText: "Enter number",
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(20),
),
),
),
SizedBox(height: 15),
TextField(
controller: controller2,
keyboardType: TextInputType.number,
decoration: InputDecoration(
labelText: "Enter number",
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(20),
),
),
),
SizedBox(height: 15),
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
ElevatedButton(onPressed: add, child: Text('ADD')),
ElevatedButton(onPressed: sub, child: Text('SUB')),
],
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
ElevatedButton(onPressed: mul, child: Text('MUL')),
ElevatedButton(onPressed: div, child: Text('DIV')),
],
),
],
),
),
);
}
}