error screen fix

This commit is contained in:
Kima 2024-03-22 21:07:41 +01:00
parent 9a7140744e
commit 1757e16dea

View File

@ -23,7 +23,7 @@ class ErrorReportScreen extends StatelessWidget {
padding: const EdgeInsets.all(12.0), padding: const EdgeInsets.all(12.0),
child: Column( child: Column(
children: [ children: [
const Spacer(), const SizedBox(height: 30),
Image.asset('assets/icons/ic_rounded.png', height: 40), Image.asset('assets/icons/ic_rounded.png', height: 40),
const SizedBox(height: 16), const SizedBox(height: 16),
Padding( Padding(
@ -94,8 +94,8 @@ class ErrorReportScreen extends StatelessWidget {
), ),
), ),
IconButton( IconButton(
icon: icon: Icon(FeatherIcons.info,
const Icon(FeatherIcons.info, color: Color(0xFF011234)), color: Theme.of(context).colorScheme.primary),
onPressed: () { onPressed: () {
showDialog( showDialog(
context: context, context: context,