ente/lib/ui/common_elements.dart
Vishnu Mohandas d8bab76265 Update UI
2020-10-25 02:37:12 +05:30

15 lines
387 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, {VoidCallback onPressed}) {
return RaisedButton(
child: Text(text),
onPressed: onPressed,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10.0),
),
);
}