ente/lib/ui/common_elements.dart

25 lines
530 B
Dart
Raw Normal View History

import 'package:flutter/material.dart';
2020-08-09 14:58:41 +00:00
import 'package:flutter/widgets.dart';
final nothingToSeeHere = Center(child: Text("Nothing to see here! 👀"));
2020-11-10 14:55:28 +00:00
RaisedButton button(
String text, {
double fontSize = 14,
VoidCallback onPressed,
}) {
return RaisedButton(
2020-11-10 14:55:28 +00:00
child: Text(
text,
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: fontSize,
),
),
onPressed: onPressed,
shape: RoundedRectangleBorder(
2020-10-24 21:07:12 +00:00
borderRadius: BorderRadius.circular(10.0),
),
);
}