simpleTopicContainer function

Widget simpleTopicContainer(
  1. AppModel app,
  2. BuildContext context, {
  3. required List<Widget> children,
  4. DecorationImage? image,
  5. double? height,
  6. double? width,
})

Implementation

Widget simpleTopicContainer(AppModel app, BuildContext context,
        {required List<Widget> children,
        DecorationImage? image,
        double? height,
        double? width}) =>
    StyleRegistry.registry()
        .styleWithApp(app)
        .frontEndStyle()
        .containerStyle()
        .simpleTopicContainer(app, context,
            children: children, image: image, height: height, width: width);