hyzp_ybqx-Commit094:优化。但还不能保存已登录的用户

This commit is contained in:
WinUser01
2022-01-26 00:40:49 +08:00
parent e28e645e13
commit c5e1a014b0
3 changed files with 17 additions and 11 deletions
+9 -4
View File
@@ -130,10 +130,15 @@ class _JdTextState extends State<JdText> {
child: IconButton(
padding: EdgeInsets.only(bottom: 0.0),
iconSize: 40,
icon: Icon(
Icons.arrow_drop_down,
color: g_users.isNotEmpty ? Colors.blueAccent : Colors.grey,
),
icon: g_can_expand_ListView
? Icon(
Icons.arrow_drop_up,
color: Colors.blueAccent,
)
: Icon(
Icons.arrow_drop_down,
color: g_users.isNotEmpty ? Colors.blueAccent : Colors.grey,
),
onPressed: widget.onEndBtn),
);
break;