Set the min SDK to Dart 3.3, bump and fix lints, switch cleanup

This commit is contained in:
Kevin Moore
2024-02-20 13:56:39 -08:00
parent 596abc850c
commit e5f1c55993
126 changed files with 388 additions and 493 deletions

View File

@ -10,7 +10,7 @@ import 'package:wonders/ui/common/themed_text.dart';
import 'package:wonders/ui/common/utils/app_haptics.dart';
class IntroScreen extends StatefulWidget {
const IntroScreen({Key? key}) : super(key: key);
const IntroScreen({super.key});
@override
State<IntroScreen> createState() => _IntroScreenState();
@ -257,7 +257,7 @@ class _PageData {
}
class _Page extends StatelessWidget {
const _Page({Key? key, required this.data}) : super(key: key);
const _Page({required this.data});
final _PageData data;
@ -314,7 +314,7 @@ class _WonderousLogo extends StatelessWidget {
}
class _PageImage extends StatelessWidget {
const _PageImage({Key? key, required this.data}) : super(key: key);
const _PageImage({required this.data});
final _PageData data;