simpleTopicContainer function
Widget
simpleTopicContainer(
- AppModel app,
- BuildContext context, {
- required List<
Widget> children, - DecorationImage? image,
- double? height,
- 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);