Untitled
Anonymous
plain_text
09/17/2024 12:07 AM
488 B
19
Indexable
import 'package:flutter/material.dart';
class ErrorPage extends StatelessWidget {
const ErrorPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Center(
child: Text(
'Ocorreu um erro na inicialização. Feche o app e tente novamente',
),
),
);
}
}
Editor is loading...
Leave a Comment