We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33018a6 commit 9fab8c0Copy full SHA for 9fab8c0
lib/widgets/card_tile.dart
@@ -44,7 +44,9 @@ class CardTile extends StatelessWidget {
44
decoration: BoxDecoration(
45
border: Border(
46
bottom: BorderSide(
47
- color: Colors.grey.withOpacity(0.1),
+ color: FluentTheme.of(context).brightness == Brightness.dark
48
+ ? Colors.white.withOpacity(0.1)
49
+ : Colors.grey.withOpacity(0.1),
50
width: 1,
51
),
52
0 commit comments