topicContainer function

Widget topicContainer(
  1. AppModel app,
  2. BuildContext context, {
  3. required List<Widget> children,
  4. DecorationImage? image,
  5. double? height,
  6. double? width,
  7. String? title,
  8. bool? collapsible,
  9. bool? collapsed = false,
  10. BackgroundModel? backgroundOverride,
})

Implementation

Widget topicContainer(
  AppModel app,
  BuildContext context, {
  required List<Widget> children,
  DecorationImage? image,
  double? height,
  double? width,
  String? title,
  bool? collapsible,
  bool? collapsed = false,
  BackgroundModel? backgroundOverride,
}) =>
    StyleRegistry.registry()
        .styleWithApp(app)
        .frontEndStyle()
        .containerStyle()
        .topicContainer(app, context,
            children: children,
            image: image,
            height: height,
            width: width,
            title: title,
            collapsible: collapsible,
            collapsed: collapsed,
            backgroundOverride: backgroundOverride);