1 2 3 4 5 6 7 8 9 10 11 12 13 14
import 'package:flutter/widgets.dart'; class ErrorPage extends StatelessWidget { const ErrorPage({super.key}); @override Widget build(BuildContext context) { return const Center( child: Text( 'Error', style: TextStyle(color: Color(0xFFFFFF00))), ); } }