dialog_switcher 0.0.6 copy "dialog_switcher: ^0.0.6" to clipboard
dialog_switcher: ^0.0.6 copied to clipboard

Allows user to switch widgets gracefully within a dialog with Animation.

DialogSwitcher For Flutter #

pub package likes popularity pub points

Allows user to switch widgets gracefully within a dialog with Animation.

Sample #

Usage #

To use this plugin, add dialog_switcher as a dependency in your pubspec.yaml file.

  dependencies:
    flutter:
      sdk: flutter
    dialog_switcher:

Sample Usage

import 'package:flutter/material.dart';
import 'package:transition_switcher/dialog_switcher.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'DialogSwitcher',
      debugShowCheckedModeBanner: false,
      home: SafeArea(
        child: Scaffold(
          body: Container(
            child: Column(
              mainAxisAlignment: MainAxisAlignment.center,
              children: [
                Text(
                  "Sample Usage",
                  style: TextStyle(fontSize: 20),
                ),
                DialogSwitcher(
                  dialogBackgroundColor: Colors.transparent,
                  dialogElevation: 0,
                  frontChild: Container(
                    width: 300,
                    height: 300,
                    color: Colors.amber,
                  ),
                  backChild: Container(
                    width: 300,
                    height: 300,
                    color: Colors.pinkAccent,
                  ),
                ),
              ],
            ),
          ),
        ),
      ),
    );
  }
}

And a lot more.... There is a lot of customization available which is self explantory. If you ever face a problem, feel free to create an issue.

See the example directory for a complete sample app.

Created & Maintained By Shivam Verma #

17
likes
130
pub points
0%
popularity

Publisher

unverified uploader

Allows user to switch widgets gracefully within a dialog with Animation.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on dialog_switcher