mirror of
https://github.com/immich-app/immich.git
synced 2025-12-23 17:25:11 +03:00
fix: dcm analyze fails
This commit is contained in:
@@ -83,7 +83,7 @@ class _ViewerQuickActionConfiguratorState extends ConsumerState<ViewerQuickActio
|
|||||||
height: 4,
|
height: 4,
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
color: theme.colorScheme.onSurface.withValues(alpha: 0.25),
|
color: theme.colorScheme.onSurface.withValues(alpha: 0.25),
|
||||||
borderRadius: BorderRadius.circular(2),
|
borderRadius: const BorderRadius.all(Radius.circular(2)),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(height: 16),
|
const SizedBox(height: 16),
|
||||||
@@ -172,7 +172,7 @@ class _QuickActionTile extends StatelessWidget {
|
|||||||
child: Container(
|
child: Container(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 8),
|
padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 8),
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
borderRadius: BorderRadius.circular(12),
|
borderRadius: const BorderRadius.all(Radius.circular(12)),
|
||||||
border: Border.all(color: borderColor),
|
border: Border.all(color: borderColor),
|
||||||
color: backgroundColor,
|
color: backgroundColor,
|
||||||
),
|
),
|
||||||
@@ -189,7 +189,7 @@ class _QuickActionTile extends StatelessWidget {
|
|||||||
height: 24,
|
height: 24,
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
color: indicatorColor.withValues(alpha: 0.15),
|
color: indicatorColor.withValues(alpha: 0.15),
|
||||||
borderRadius: BorderRadius.circular(12),
|
borderRadius: const BorderRadius.all(Radius.circular(12)),
|
||||||
),
|
),
|
||||||
child: Center(
|
child: Center(
|
||||||
child: Text(
|
child: Text(
|
||||||
|
|||||||
@@ -49,5 +49,5 @@ extension ActionButtonTypeVisuals on ActionButtonType {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
String localizedLabel(BuildContext context) => _labelKey.tr();
|
String localizedLabel(BuildContext _) => _labelKey.tr();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user