mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-27 15:07:45 +00:00
chore: star rating letter casing (#25554)
This commit is contained in:
parent
da590995ab
commit
6587d45f1e
1 changed files with 2 additions and 5 deletions
|
|
@ -298,11 +298,8 @@ class _AssetDetailBottomSheet extends ConsumerWidget {
|
||||||
spacing: 8,
|
spacing: 8,
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
'rating'.t(context: context).toUpperCase(),
|
'rating'.t(context: context),
|
||||||
style: context.textTheme.labelMedium?.copyWith(
|
style: context.textTheme.labelLarge?.copyWith(color: context.colorScheme.onSurfaceSecondary),
|
||||||
color: context.textTheme.labelMedium?.color?.withAlpha(200),
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
RatingBar(
|
RatingBar(
|
||||||
initialRating: exifInfo?.rating?.toDouble() ?? 0,
|
initialRating: exifInfo?.rating?.toDouble() ?? 0,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue