Untitled

 avatar
unknown
plain_text
10 months ago
364 B
6
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