migrate to pigeon

This commit is contained in:
2026-01-13 22:53:42 -08:00
parent b0736478cd
commit 2a3652d808
17 changed files with 2111 additions and 225 deletions
@@ -195,8 +195,8 @@ class _DeviceabilityHeader extends StatelessWidget {
: 'This device does not support vibration.',
style: Theme.of(context).textTheme.bodyMedium?.copyWith(
color: canVibrate
? colorScheme.onPrimaryContainer.withOpacity(0.8)
: colorScheme.onErrorContainer.withOpacity(0.8),
? colorScheme.onPrimaryContainer.withValues(alpha: 0.8)
: colorScheme.onErrorContainer.withValues(alpha: 0.8),
),
),
],
@@ -352,8 +352,8 @@ class _FeedbackTileState extends State<_FeedbackTile>
Transform.scale(scale: _scaleAnimation.value, child: child),
child: Material(
color:
widget.item.color?.withOpacity(0.15) ??
colorScheme.secondaryContainer.withOpacity(0.4),
widget.item.color?.withValues(alpha: 0.15) ??
colorScheme.secondaryContainer.withValues(alpha: 0.4),
borderRadius: BorderRadius.circular(16),
child: InkWell(
borderRadius: BorderRadius.circular(16),