dialog_alert_transition 1.0.0 copy "dialog_alert_transition: ^1.0.0" to clipboard
dialog_alert_transition: ^1.0.0 copied to clipboard

Creating a dialog is simpler and easier with the dialog_alert_transition package since it has transitions into and out of the dialog, it has a multilevel dialog handler. Available for android, ios, wi [...]

Dialog alert transition #

Creating a dialog is simpler and easier with the dialog_alert_transition package since it has transitions into and out of the dialog, it has a multilevel dialog handler. Available for android, ios, windows, linux, mac, web.

The transitions are as follows:

FadeIn, 

FadeInDown, 

FadeInDownBig, 

FadeInUp, 

FadeInUpBig, 

FadeInLeft, 

FadeInLeftBig, 

FadeInRight, 

FadeInRightBig, 

BounceInDown, 

BounceInUp, 

BounceInLeft, 

BounceInRight, 

ElasticIn, 

ElasticInDown, 

ElasticInUp, 

ElasticInLeft, 

ElasticInRight, 

SlideInDown, 

SlideInUp, 

SlideInLeft, 

SlideInRight, 

FlipInX, 

FlipInY, 

ZoomIn, 

JelloIn, 

Bounce, 

Dance, 

Flash, 

Pulse, 

Roulette, 

ShakeX, 

ShakeY, 

Spin, 

SpinPerfect, 

Swing, 

EJEMPLO:

Example #


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

class singleAlert extends StatefulWidget {
  const singleAlert({super.key});

  @override
  State<singleAlert> createState() => _multiAlert();
}

class _multiAlert extends State<singleAlert> {
  String stas = 'text old';

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Single dialog'),
      ),
      body: Center(
        child: ListView(
          children: [
            for (transitionType e in transitionType.values) ...[
              TextButton(
                onPressed: () {
                  int newToken = controlAlertGo.generate();
                  dialogAlertTransion(
                      context: context,
                      title: const Text('Flutter OutlinedButton Example'),
                      content: const Column(
                        children: [
                          Text(
                              'FloatingActionButton (FAB) is a property of Scaffold(). In the above example, we’ve displayed a FloatingActionButton, also we’ve modified the style of that buttons such as color and position of the FAB. The output looks like this'),
                        ],
                      ),
                      alignment: Alignment.topCenter,
                      blur: true,
                      duration: 1000,
                      backgroundColor: Colors.black,
                      transitionType: e,
                      token: newToken,
                      rejectString: 'Close alert',
                      acceptString: 'Confirm this alert',
                      rejectFunc: () {
                        print('this function use is reject alert');
                      },
                      acceptFunc: () {
                        print('this function use in accept alert');
                      },
                      closeFunc: () {
                        setState(() {
                          stas = 'new string';
                        });
                      });
                },
                child: Text(e.name),
              ),
            ]
          ],
        ),
      ),
    );
  }
}

Screenshots #

Dialog alert in action Dialog alert in action

6
likes
0
points
38
downloads

Publisher

verified publishernio.ilove-soft.com

Weekly Downloads

Creating a dialog is simpler and easier with the dialog_alert_transition package since it has transitions into and out of the dialog, it has a multilevel dialog handler. Available for android, ios, windows, linux, mac, web

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on dialog_alert_transition