Skip to content

Commit 9fab8c0

Browse files
committed
fix: 桌面端深色模式详情页卡片的一个错误
1 parent 33018a6 commit 9fab8c0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/widgets/card_tile.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ class CardTile extends StatelessWidget {
4444
decoration: BoxDecoration(
4545
border: Border(
4646
bottom: BorderSide(
47-
color: Colors.grey.withOpacity(0.1),
47+
color: FluentTheme.of(context).brightness == Brightness.dark
48+
? Colors.white.withOpacity(0.1)
49+
: Colors.grey.withOpacity(0.1),
4850
width: 1,
4951
),
5052
),

0 commit comments

Comments
 (0)