|
|
|
@@ -66,7 +66,7 @@ class _PlotParameterScreenState extends State<PlotParameterScreen> |
|
|
|
return RefreshIndicator( |
|
|
|
child: GridView.builder( |
|
|
|
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount( |
|
|
|
crossAxisCount: 2), |
|
|
|
crossAxisCount: 2, childAspectRatio: 3 / 2), |
|
|
|
physics: AlwaysScrollableScrollPhysics(), |
|
|
|
itemBuilder: (BuildContext context, int index) { |
|
|
|
return index >= state.items.length |
|
|
|
@@ -130,18 +130,17 @@ class ItemInfinityWidget extends StatelessWidget { |
|
|
|
style: TextStyle( |
|
|
|
color: item.status ? Colors.red : AppColors.YELLOW, |
|
|
|
fontWeight: FontWeight.bold, |
|
|
|
fontSize: 28), |
|
|
|
fontSize: 22), |
|
|
|
), |
|
|
|
Expanded(child: Container()), |
|
|
|
Flexible( |
|
|
|
child: Text( |
|
|
|
"${item.name ?? ''}", |
|
|
|
maxLines: 2, |
|
|
|
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 20), |
|
|
|
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 18), |
|
|
|
), |
|
|
|
), |
|
|
|
Text(item.executeDate.format_DDMMYY_HHmm(), |
|
|
|
style: TextStyle(fontSize: 15, color: Colors.grey)) |
|
|
|
style: TextStyle(fontSize: 13, color: Colors.grey)) |
|
|
|
], |
|
|
|
), |
|
|
|
); |