f_dialog 0.0.1 copy "f_dialog: ^0.0.1" to clipboard
f_dialog: ^0.0.1 copied to clipboard

Flutter Dialogs.

Features #

Info Dialog, Progress Dialog, Success Dialog, Fail Dialog, Error Dialog,



to use the desired dialog type on the desired screen and to close it according to the dialog type on the screen.

Dialogs contents support localization.

Images #

Getting started #

TODO: List prerequisites and provide or point to information on how to start using the package.

Usage #

to main.dart file.

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

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return FDialog(
      theme: ThemeData(),
      child: MaterialApp(
        builder: (context, child) {
          FDialog.of(context)
              .setLocalization(const Localization(
            errorContent: 'Something went wrong',
            errorTitle: 'Opps!',
            failedContent: 'Your process failed.',
            failedTitle: 'Failed',
            infoContent: 'This is a info body',
            onCancelText: 'Cancel',
            infoTitle: 'Info',
            onConfirmText: 'OK',
            processingContent: 'Processing...',
            processingTitle: 'Process',
            successTitle: 'Success',
            successContent:
                'Your process has been successfully completed',
          ));
          return const Scaffold(
            body: MyHomePage(),
          );
        },
      ),
    );
  }
}

To create a dialog #

   FDialog.of(context).show(
              context,
              dialogType:
                  DialogTypeEnums.progress,
            );

To close the last Dialog shown on the screen. #

  FDialog.close(context);

To close a specific dialog that appears on the screen. #

  FDialog.close(context,
                  DialogTypeEnums.progress);

TODO #

More dialog types and custom features will be added.

5
likes
0
points
32
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter Dialogs.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on f_dialog