fancy_dialog 1.0.3 copy "fancy_dialog: ^1.0.3" to clipboard
fancy_dialog: ^1.0.3 copied to clipboard

outdated

Custom Alert Dialog,inspired from FancyGifDialog for android,the new thing is that you can choose between 2 themes Fancy and Flat and you can load images and Gif from your assets.

example/lib/main.dart

import 'package:fancy_dialog/FancyAnimation.dart';
import 'package:fancy_dialog/FancyGif.dart';
import 'package:fancy_dialog/FancyTheme.dart';
import 'package:fancy_dialog/fancy_dialog.dart';
import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
        body: Center(
      child: Column(
        children: <Widget>[
          Padding(
            padding: EdgeInsets.all(20),
          ),
        
          Padding(
            padding: EdgeInsets.only(top: 50),
            child: RaisedButton(
              child: Text("Click me"),

              onPressed: () => {
                showDialog(
                    context: context,
                    builder: (BuildContext context) => FancyDialog(
                          title: "Fancy Gif Dialog",
                          descreption:
                              "This is descreption for fancy gif,you can load any image or gif to be displayed :), and you can choose between two themes Fancy and Flat",
                          animationType: FancyAnimation.BOTTOM_TOP,
                          theme: FancyTheme.FANCY,
                          gifPath: FancyGif.MOVE_FORWARD, //'./assets/walp.png',
                          okFun: () => {print("it's working :)")},
                        ))
              },
            ),
          )
        ],
      ),
    ));
  }
}
35
likes
40
pub points
66%
popularity

Publisher

unverified uploader

Custom Alert Dialog,inspired from FancyGifDialog for android,the new thing is that you can choose between 2 themes Fancy and Flat and you can load images and Gif from your assets.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on fancy_dialog