Skip to content

a Flutter Package for Showing a Overlay for succes and error with nice animation

License

Notifications You must be signed in to change notification settings

ahmedmgh67/SuccessErrorOverlay

Repository files navigation

success_error_overlay

A plugin for showing an overlay above screen with a nice animation and highly Customizable colors and text

Basic Example

!!! Complete Example in the Example Tab

SuccessErrorOverlay(
  onTap: () => setState(() => isVisible = false),
  isCorrect: true,
),

Complete Example

import 'package:flutter/material.dart';
import 'package:success_error_overlay/success_error_overlay.dart';

class Example extends StatefulWidget {
  @override
  _ExampleState createState() => _ExampleState();
}

class _ExampleState extends State<Example> {
  bool isVisible = false;

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Stack(
        children: <Widget>[
          Center(
            child: RaisedButton(
              onPressed: () => setState(() => isVisible = true),
              child: Text("Show Overlay"),
            ),
          ),
          !isVisible ? Container() : SuccessErrorOverlay(
            onTap: () => setState(() => isVisible = false),
            isCorrect: true,
          ),
        ],
      ),
    );
  }

About

a Flutter Package for Showing a Overlay for succes and error with nice animation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published