Untitled

mail@pastecode.io avatar
unknown
plain_text
17 days ago
364 B
2
Indexable
Never
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',
        ),
      ),
    );
  }
}
Leave a Comment