dialogButton function
Widget
dialogButton(
- AppModel app,
- BuildContext context, {
- VoidCallback? onPressed,
- required String label,
- String? tooltip,
- bool? selected,
Implementation
Widget dialogButton(AppModel app, BuildContext context,
{VoidCallback? onPressed,
required String label,
String? tooltip,
bool? selected}) =>
StyleRegistry.registry()
.styleWithApp(app)
.frontEndStyle()
.buttonStyle()
.dialogButton(app, context,
onPressed: onPressed,
label: label,
tooltip: tooltip,
selected: selected);