actionContainer function

Widget actionContainer(
  1. AppModel app,
  2. BuildContext context, {
  3. required Widget child,
  4. double? height,
  5. double? width,
  6. 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,
        );