Version 0.1.0

This commit is contained in:
Elias Projahn 2020-01-15 19:04:40 +01:00
commit 5dda59a6cd
73 changed files with 5741 additions and 0 deletions

View file

@ -0,0 +1,31 @@
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,
);
}
}