smooth_dialog 0.0.4 copy "smooth_dialog: ^0.0.4" to clipboard
smooth_dialog: ^0.0.4 copied to clipboard

A smooth dialog is the customized dialog that provides the simple configuration of dialog and it has two UI experiences is Android and iOS.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

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

class MyHomePage extends StatefulWidget {
  const MyHomePage({Key? key}) : super(key: key);

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  late SmoothDialog smoothDialog;

  @override
  void initState() {
    super.initState();
    smoothDialog = SmoothDialog(context);
  }

  void _showAlertDialog() {
    smoothDialog
        .setTitleHeader("this is the header dialog")
        .setDescription("This is description")
        .setTitlePositive("Confirm")
        .setTitleNegative("Cancel")
        .addButtonNegativeListener(() {})
        .addButtonPositiveListener(() {})
        .addDismissListener(() {})
        .showDialog();
  }

  void _showLoadingDialog() {
    smoothDialog.showLoadingDialog();
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text("Flutter Demo Home Page"),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            TextButton(
              onPressed: () {
                _showAlertDialog();
              },
              child: const Text(
                "Show Alert dialog",
                style: TextStyle(fontWeight: FontWeight.bold, fontSize: 24),
              ),
            ),
            TextButton(
              onPressed: () {
                _showLoadingDialog();
              },
              child: const Text(
                "Show Loading dialog",
                style: TextStyle(fontWeight: FontWeight.bold, fontSize: 24),
              ),
            ),
          ],
        ),
      ),
    );
  }
}
0
likes
120
pub points
34%
popularity

Publisher

unverified uploader

A smooth dialog is the customized dialog that provides the simple configuration of dialog and it has two UI experiences is Android and iOS.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on smooth_dialog