33 lines
958 B
Dart
33 lines
958 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
typedef void CalculatorButtonTapCallback({String buttonText});
|
|
|
|
class CalculatorButton extends StatelessWidget {
|
|
CalculatorButton({this.text, @required this.onTap});
|
|
|
|
final String text;
|
|
final CalculatorButtonTapCallback onTap;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Expanded(
|
|
child: Container(
|
|
decoration: BoxDecoration(
|
|
border: Border.all(
|
|
color: Color.fromRGBO(0, 0, 0, 0.1),
|
|
width: 0.5,
|
|
),
|
|
),
|
|
child: FlatButton(
|
|
onPressed: () => onTap(buttonText: text),
|
|
child: Text(
|
|
text,
|
|
style: TextStyle(fontSize: 18, fontWeight: FontWeight.w500),
|
|
),
|
|
padding: EdgeInsets.all(30),
|
|
highlightColor: Colors.blueGrey[100],
|
|
splashColor: Colors.blueAccent[100],
|
|
)));
|
|
}
|
|
}
|