mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-04 16:03:13 +00:00
34 lines
718 B
Dart
34 lines
718 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
/// Basically a [TextButton] to be used in dialogs
|
|
class DialogActionButton extends StatelessWidget {
|
|
const DialogActionButton({
|
|
super.key,
|
|
this.text,
|
|
this.onPressed,
|
|
this.isRed = false,
|
|
});
|
|
|
|
final VoidCallback? onPressed;
|
|
final String? text;
|
|
final bool isRed;
|
|
|
|
@override
|
|
Widget build(final BuildContext context) {
|
|
final NavigatorState navigator = Navigator.of(context);
|
|
|
|
return TextButton(
|
|
child: Text(
|
|
text!,
|
|
style: isRed
|
|
? TextStyle(color: Theme.of(context).colorScheme.error)
|
|
: null,
|
|
),
|
|
onPressed: () {
|
|
navigator.pop();
|
|
onPressed?.call();
|
|
},
|
|
);
|
|
}
|
|
}
|