actionContainer function
Widget
actionContainer(
- AppModel app,
- BuildContext context, {
- required Widget child,
- double? height,
- double? width,
- BackgroundModel? backgroundOverride,
Implementation
Widget actionContainer(
AppModel app,
BuildContext context, {
required Widget child,
double? height,
double? width,
BackgroundModel? backgroundOverride,
}) =>
StyleRegistry.registry()
.styleWithApp(app)
.frontEndStyle()
.containerStyle()
.actionContainer(
app,
context,
child: child,
height: height,
width: width,
backgroundOverride: backgroundOverride,
);