webFormUnitContent function

dynamic webFormUnitContent(
  1. BuildContext context,
  2. String title,
  3. String value
)

Implementation

webFormUnitContent(BuildContext context, String title, String value) {
  return Row(
    children: [
      buildHeaderBold(context, '${title} :', softWrap: true),
      buildSizeWidth(5),
      AppText(
        value,
        style: TextStyles.normal(context),
        softWrap: true,
      )
    ],
  );
}