16 lines
302 B
Dart
16 lines
302 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class ErrorScreen extends StatelessWidget {
|
||
|
const ErrorScreen({Key? key}) : super(key: key);
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return const Center(
|
||
|
child: Icon(
|
||
|
Icons.error,
|
||
|
color: Colors.red,
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|