git-touch-android-ios-app/lib/widgets/mutation_button.dart

36 lines
833 B
Dart
Raw Normal View History

2020-01-12 07:49:46 +01:00
import 'package:flutter/cupertino.dart';
import 'package:git_touch/models/theme.dart';
import 'package:provider/provider.dart';
class MutationButton extends StatelessWidget {
final String text;
final VoidCallback onPressed;
MutationButton({
@required this.text,
@required this.onPressed,
});
@override
Widget build(BuildContext context) {
final theme = Provider.of<ThemeModel>(context);
return CupertinoButton(
onPressed: onPressed,
minSize: 0,
2020-01-27 08:11:51 +01:00
color: theme.palette.primary,
2020-01-12 07:49:46 +01:00
padding: EdgeInsets.symmetric(
2020-01-27 08:08:10 +01:00
horizontal: 12,
vertical: 4,
2020-01-12 07:49:46 +01:00
),
borderRadius: BorderRadius.all(Radius.circular(20)),
child: Text(
text,
2020-01-14 06:33:02 +01:00
style: TextStyle(
2020-01-27 08:08:10 +01:00
fontSize: 17,
2020-01-27 08:11:51 +01:00
color: theme.palette.background,
2020-01-14 06:33:02 +01:00
),
2020-01-12 07:49:46 +01:00
),
);
}
}