templateSchedaViewerSch function

dynamic templateSchedaViewerSch(
  1. String subTitle,
  2. 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(),
      ),
    ],
  );
}