ente/lib/ui/common_elements.dart
2020-11-10 20:25:28 +05:30

25 lines
530 B
Dart

import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
final nothingToSeeHere = Center(child: Text("Nothing to see here! 👀"));
RaisedButton button(
String text, {
double fontSize = 14,
VoidCallback onPressed,
}) {
return RaisedButton(
child: Text(
text,
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: fontSize,
),
),
onPressed: onPressed,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10.0),
),
);
}