calculator
calculator
dart';
void main() {
runApp(MaterialApp(
home:MyApp()
)); // MaterialApp
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title : Text('GOOD MORNING '),
backgroundColor: Colors.red.shade900,
), // AppBar
body: Column(
children: [
SizedBox(
height: 15,
),
TextField(
decoration: InputDecoration(
labelText: "Enter The First Number",
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(10000)
), // OutlineInputBorder
), //InputDecoration
), // TextField
SizedBox(
height: 20,
),
TextField(
decoration: InputDecoration(
labelText: "Enter The Second Number",
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(10000)
), // OutlineInputBorder
),// InputDecoration
),// TextField
SizedBox(
height: 20),
ElevatedButton(onPressed: (){}, child: Text('+')),
SizedBox(height: 20,),
Text('The Addition Is:',
style: TextStyle(
fontSize: 20,
fontWeight: FontWeight.bold,
color: Colors.orange
),
)
],
) // Column
); // Scaffold
}
}