ente/lib/ui/common_elements.dart
2021-04-20 16:36:40 +05:30

38 lines
749 B
Dart

import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
final nothingToSeeHere = Center(
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Text(
"nothing to see here! 👀",
style: TextStyle(
color: Colors.white30,
),
),
),
);
RaisedButton button(
String text, {
double fontSize = 14,
VoidCallback onPressed,
}) {
return RaisedButton(
child: Text(
text,
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: fontSize,
),
textAlign: TextAlign.center,
),
onPressed: onPressed,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10.0),
),
);
}
final emptyContainer = Container();