Row(
children: [
Text('地址信息填写',style: TextStyle(color: JadeColors.grey_3,fontSize: 28.sp,fontWeight: FontWeight.w600)),
SizedBox(width: 60.w),
Expanded(child: TextField(
textAlign: TextAlign.start,
controller: state.stationNameController,
style: TextStyle(fontSize: 28.sp, color: JadeColors.grey_2),
keyboardType: TextInputType.text,
textInputAction: TextInputAction.done,
maxLines: 1,
maxLength: 40,
decoration: InputDecoration(
filled: true,
fillColor: Colors.white,
isCollapsed: true,
isDense: true,
contentPadding: EdgeInsets.zero,
hintText: '请填写名称',
hintStyle: TextStyle(
fontSize: 28.sp,
color: JadeColors.grey),
disabledBorder: OutlineInputBorder(
borderSide: BorderSide.none,
),
enabledBorder: OutlineInputBorder(borderSide: BorderSide.none),
focusedBorder: OutlineInputBorder(borderSide: BorderSide.none),
border: OutlineInputBorder(borderSide: BorderSide.none),
counterText: ''
),
onChanged: (value) {},
cursorColor: JadeColors.grey,
)),
])