VCell constructor
const
VCell({
- Key? key,
- String title = '',
- String value = '',
- String? hintText,
- String? labelText,
- Widget? leftWidget,
- Widget? rightWidget,
- bool showRedStar = false,
- VoidCallback? clickCallBack,
- double space = 150,
- bool topAlign = false,
- String? bgColor,
- double cellHeight = 50,
- TextAlign textAlign = TextAlign.left,
- TextStyle? titleStyle,
- TextStyle? textStyle,
- bool isTransparentBg = false,
- bool disable = false,
- bool disableHiddenArrow = true,
- double radius = 0,
- bool customNeedExpand = false,
Implementation
const VCell({Key? key,
this.title = '',
this.value = '',
this.hintText,
this.labelText,
// this.errorText,
this.leftWidget,
this.rightWidget,
this.showRedStar = false,
this.hiddenArrow = false,
// this.border = InputBorder.none, // 去掉下划线
this.clickCallBack,
this.space = 150,
this.hiddenLine = false,
this.topAlign = false,
this.bgColor,
// this.lineColor = "#dcdcdc",
this.cellHeight = 50,
this.textAlign = TextAlign.left,
this.titleStyle,
this.textStyle,
// this.hintTextStyle,
// this.labelTextStyle,
this.isTransparentBg = false,
this.disable = false,
this.disableHiddenArrow = true,
this.radius = 0,
this.customNeedExpand = false})
: super(key: key);