renderText method

Widget renderText()

Implementation

Widget renderText() {
  bool isPlain = plain != null && plain!;
  return Padding(
    padding: EdgeInsets.symmetric(horizontal: text != null ? orientationMargin! : 0),
    child: Text(
      text ?? '',
      style: TextStyle(
        color: iTextColor,
        fontSize: isPlain ? iFontSize : iFontSizeLG,
        fontWeight: isPlain ? FontWeight.normal : FontWeight.bold,
      ),
    ),
  );
}