Skip to content

Commit 656a274

Browse files
Jshewmakerclaude
andcommitted
fix: improve friend tile visibility with border and adjusted background
The tile background was too close to the page background, making the username text invisible. Added a subtle border and semi-transparent background so tiles stand out from the dark page. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent da89558 commit 656a274

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

lib/player/view/customize_player_page.dart

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -463,11 +463,14 @@ class _FriendTile extends StatelessWidget {
463463
vertical: AppSpacing.sm,
464464
),
465465
decoration: BoxDecoration(
466-
color: AppColors.surface,
466+
color: AppColors.surface.withValues(alpha: 0.8),
467467
borderRadius: BorderRadius.circular(AppSpacing.md),
468-
border: isSelected
469-
? Border.all(color: AppColors.tertiary, width: 2)
470-
: null,
468+
border: Border.all(
469+
color: isSelected
470+
? AppColors.tertiary
471+
: AppColors.neutral60.withValues(alpha: 0.3),
472+
width: isSelected ? 2 : 1,
473+
),
471474
),
472475
child: Row(
473476
children: [

0 commit comments

Comments
 (0)