christmas_cats/lib/widgets/menu_entry.dart
2020-01-15 19:04:40 +01:00

31 lines
610 B
Dart

import 'package:flutter/material.dart';
class MenuEntry extends StatelessWidget {
final String text;
final void Function() onTap;
MenuEntry({
@required this.text,
this.onTap,
});
@override
Widget build(BuildContext context) {
return InkWell(
child: Center(
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Text(
text,
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 40.0,
height: 1.1,
),
),
),
),
onTap: onTap,
);
}
}