mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-16 02:35:59 -07:00
chore: Fix dart deprecation messages
This commit is contained in:
parent
607dea3de1
commit
39a7537116
81 changed files with 258 additions and 195 deletions
|
|
@ -78,7 +78,7 @@ class CrashScreen extends ConsumerWidget {
|
|||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||
children: [
|
||||
Card(
|
||||
color: e.color.withOpacity(0.1),
|
||||
color: e.color.withValues(alpha: 0.1),
|
||||
margin: const EdgeInsets.symmetric(vertical: 12),
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(8),
|
||||
|
|
@ -90,7 +90,7 @@ class CrashScreen extends ConsumerWidget {
|
|||
children: [
|
||||
Expanded(
|
||||
child: Card(
|
||||
color: e.color.withOpacity(0.2),
|
||||
color: e.color.withValues(alpha: 0.2),
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(4.0),
|
||||
child: Text(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue