easy_overlay 1.0.1 copy "easy_overlay: ^1.0.1" to clipboard
easy_overlay: ^1.0.1 copied to clipboard

Simplify the addition of loading screens, overlays and toast messages in your Flutter app with this package.

example/lib/main.dart

import 'package:easy_overlay/easy_overlay.dart';
import 'package:flutter/material.dart';
import 'package:example/home.dart';

void main(List<String> args) {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: const Home(),
      builder: EasyOverlay.init(),
      debugShowCheckedModeBanner: false,
    );
  }
}
6
likes
130
points
54
downloads

Publisher

verified publisherkyawthet.com

Weekly Downloads

Simplify the addition of loading screens, overlays and toast messages in your Flutter app with this package.

Repository (GitHub)

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

flutter

More

Packages that depend on easy_overlay