chore: star rating letter casing (#25554)

This commit is contained in:
Alex 2026-01-27 02:57:39 -06:00 committed by GitHub
parent da590995ab
commit 6587d45f1e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -298,11 +298,8 @@ class _AssetDetailBottomSheet extends ConsumerWidget {
spacing: 8,
children: [
Text(
'rating'.t(context: context).toUpperCase(),
style: context.textTheme.labelMedium?.copyWith(
color: context.textTheme.labelMedium?.color?.withAlpha(200),
fontWeight: FontWeight.w600,
),
'rating'.t(context: context),
style: context.textTheme.labelLarge?.copyWith(color: context.colorScheme.onSurfaceSecondary),
),
RatingBar(
initialRating: exifInfo?.rating?.toDouble() ?? 0,