topicContainer function
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,
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);