templateSchedaViewerSch function
dynamic
templateSchedaViewerSch(
- String subTitle,
- String descr
)
Implementation
templateSchedaViewerSch(
String subTitle,
String descr,
) {
return Column(
children: [
SizedBox(height: 5),
XContainerWithLabel(
subTitle,
color: XColors.xcolor_BackgroundDark,
alignmentContainer: Alignment.centerLeft,
textStyle: XStyles.xStyTextForLabel(),
),
SizedBox(height: 5),
XContainerWithLabel(
descr,
color: XColors.xcolor_BackgroundDark,
alignmentContainer: Alignment.centerLeft,
textAlignment: TextAlign.left,
textStyle: XStyles.xStyTextForLabel(),
),
],
);
}