Untitled
unknown
plain_text
a year ago
364 B
10
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