selfprivacy.org.app/lib/ui/components/action_button/action_button.dart

33 lines
661 B
Dart

import 'package:flutter/material.dart';
class ActionButton extends StatelessWidget {
const ActionButton({
final 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();
},
);
}
}