修改发布任务备注空时显示

pull/1/head
戴余标 3 years ago
parent 33418ae761
commit 1893085069

@ -796,11 +796,11 @@ class _PublishTaskPageState extends State<PublishTaskPage> {
.make(), .make(),
), ),
Expanded( Expanded(
child: '${_content == '' ? '请输入任务备注' : _content}' child: '${_content.isEmptyOrNull ? '请输入任务备注' : _content}'
.text .text
.size(28.sp) .size(28.sp)
.color(Colors.black .color(Colors.black
.withOpacity(_content == '' ? 0.25 : 0.85)) .withOpacity(_content.isEmptyOrNull ? 0.25 : 0.85))
.make(), .make(),
), ),
20.wb, 20.wb,

Loading…
Cancel
Save