优化调试

This commit is contained in:
jyuesong
2022-01-21 13:46:30 +08:00
parent ae7368ecbc
commit e4eabf9578
5 changed files with 42 additions and 39 deletions

View File

@@ -245,6 +245,17 @@ class EnvItemCell extends StatelessWidget {
style: TextStyle(color: primaryColor, fontSize: 12),
),
),
const SizedBox(
width: 5,
),
bean.status == 1
? const Icon(
Icons.dnd_forwardslash,
size: 12,
color: Colors.red,
)
: const SizedBox.shrink(),
const SizedBox(
width: 5,
),
@@ -261,16 +272,6 @@ class EnvItemCell extends StatelessWidget {
),
),
),
const SizedBox(
width: 5,
),
bean.status == 1
? const Icon(
Icons.dnd_forwardslash,
size: 12,
color: Colors.red,
)
: const SizedBox.shrink(),
const Spacer(),
],
),