todo save, popup, dismiss show dialog
This commit is contained in:
18
lib/utils/my_button.dart
Normal file
18
lib/utils/my_button.dart
Normal file
@@ -0,0 +1,18 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class MyButton extends StatelessWidget {
|
||||
MyButton({Key? key, required this.text, required this.onPressed})
|
||||
: super(key: key);
|
||||
|
||||
final String text;
|
||||
VoidCallback onPressed;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return MaterialButton(
|
||||
onPressed: onPressed,
|
||||
color: Theme.of(context).primaryColor,
|
||||
child: Text(text),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user