2022-01-26 00:25:07 +01:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
class ErrorScreen extends StatelessWidget {
|
2024-04-26 01:14:49 +02:00
|
|
|
const ErrorScreen({super.key});
|
2022-01-26 00:25:07 +01:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return const Center(
|
|
|
|
child: Icon(
|
|
|
|
Icons.error,
|
|
|
|
color: Colors.red,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|