Skip to content

Commit

Permalink
ui: change icon
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-ding committed Aug 11, 2024
1 parent 6fd39d8 commit 3c37948
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions ui/lib/activity.dart
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,13 @@ class _ActivityPageState extends ConsumerState<ActivityPage>
));
} else if (ac.status == "seeding") {
//seeding
return const Tooltip(
return Tooltip(
message: "做种中",
child: Icon(
Icons.upload,
//color: Colors.blue,
Icons.keyboard_double_arrow_up,
color: Theme.of(context)
.colorScheme
.inversePrimary,
),
);
} else if (ac.status == "success") {
Expand Down

0 comments on commit 3c37948

Please sign in to comment.