flutter_dialog

Creator: coderz1093

Last updated:

0 purchases

flutter_dialog Image
flutter_dialog Images
Add to Cart

Description:

flutter dialog

flutter_dialog #
A new Flutter for dialog
Getting Started #
To use this package import it as
import 'package:flutter_dialog/flutter_dialog.dart';
copied to clipboard
To show the dialog inside an screen or widget wrap that with FlutterDialog widget and provide other parameters,
FlutterDialog(
child: MyHomePage(title: 'Flutter Dialog Text'),
blueAmount: 2.0,
cancelable: true,
),
copied to clipboard
then inside My homepage get the FlutterDialog using
flutterDialog = context.ancestorWidgetOfExactType(FlutterDialog);
copied to clipboard
then show the dialog only with Title , Content and Action use
void _showDialog() {
flutterDialog.showDialog(
title: Text(
"Fluttr Dialog test",
style: TextStyle(
color: Colors.black,
fontWeight: FontWeight.w600,
fontSize: 22.0,
),
),
content: Text(
"Fluttr Dialog test",
style: TextStyle(
color: Colors.black,
fontSize: 16.0,
),
),
);
}
copied to clipboard
To show a Custom dialog use this as
void _showCustomDialog() {
flutterDialog.showCustomDialog(
dialog: Row(
children: <Widget>[
Container(
child: Column(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text(
"Fluttr Dialog test",
style: TextStyle(
color: Colors.black,
fontWeight: FontWeight.w600,
fontSize: 22.0,
),
),
Text(
"Fluttr Dialog test",
style: TextStyle(
color: Colors.black,
fontSize: 16.0,
),
),
],
),
),
],
),
);
}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.