Browse Source

fix layout plot detail

master
daivph 5 years ago
parent
commit
e2d9d019b2
1 changed files with 8 additions and 12 deletions
  1. +8
    -12
      lib/presentation/screens/plot_detail/sc_plot_detail.dart

+ 8
- 12
lib/presentation/screens/plot_detail/sc_plot_detail.dart View File

Expanded( Expanded(
child: SizedBox(), child: SizedBox(),
), ),
Row(
children: [
Text('Mã lô: ${code ?? ''}',
style: TextStyle(color: Colors.grey)),
SizedBox(
width: 16,
),
Text(
'Diện tích: ${areaM2.formatNumtoStringDecimal() ?? '0'} m\u00B2',
style: TextStyle(color: Colors.grey))
],
)
Text(
'Mã lô: ${code ?? ''}',
style: TextStyle(color: Colors.grey),
overflow: TextOverflow.clip,
),
Text(
'Diện tích: ${areaM2.formatNumtoStringDecimal() ?? '0'} m\u00B2',
style: TextStyle(color: Colors.grey))
], ],
), ),
), ),

Loading…
Cancel
Save