Navigation - Dialogs

 Dialogs 








Add  Dependencies in Pubspec.yaml:
Open [ pubspec.yaml ]

Copy and Paste in pubspec.yaml 
intl: ^0.17.0



Click  [ Pub upgrade ]  :- Note ; Internet Connection Required




Source Code


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


void main() {
runApp( MaterialApp(
title:" Dialogs ",
home:Scaffold(appBar: AppBar(title: Text(' Dialogs ',),),
body: Material(
child: Center(
child:
DialogsExample()
,
),
) ,
),
));
}





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

@override
Widget build(BuildContext context) {
return ListView(
padding: const EdgeInsets.all(32.0),
children: <Widget>[
////// Alert dialog.
ElevatedButton(
style: ElevatedButton.styleFrom(primary: Colors.red),
onPressed: () {
// The function showDialog<T> returns Future<T>.
// Use Navigator.pop() to return value (of type T).
showDialog<String>(
context: context,
builder: (BuildContext context) => AlertDialog(
title: const Text('Dialog title'),
content: const Text(
'Sample alert',
),
actions: <Widget>[
TextButton(
onPressed: () => Navigator.pop(context, 'Cancel'),
child: const Text('Cancel'),
),
TextButton(
onPressed: () => Navigator.pop(context, 'OK'),
child: const Text('OK'),
),
],
),
).then((returnVal) {
if (returnVal != null) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text('You clicked: $returnVal'),
action: SnackBarAction(label: 'OK', onPressed: () {}),
),
);
}
});
},
child: const Text('Alert Dialog'),
),
////// Simple Dialog.
ElevatedButton(
style: ElevatedButton.styleFrom(primary: Colors.yellow),
onPressed: () {
showDialog<String>(
context: context,
builder: (BuildContext context) => SimpleDialog(
title: const Text('Dialog Title'),
children: <Widget>[
ListTile(
leading: const Icon(Icons.account_circle),
title: const Text('user@example.com'),
onTap: () => Navigator.pop(context, 'user@example.com'),
),
ListTile(
leading: const Icon(Icons.account_circle),
title: const Text('user2@gmail.com'),
onTap: () => Navigator.pop(context, 'user2@gmail.com'),
),
ListTile(
leading: const Icon(Icons.add_circle),
title: const Text('Add account'),
onTap: () => Navigator.pop(context, 'Add account'),
),
],
),
).then((returnVal) {
if (returnVal != null) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text('You clicked: $returnVal'),
action: SnackBarAction(label: 'OK', onPressed: () {}),
),
);
}
});
},
child: const Text('Simple dialog'),
),
////// Time Picker Dialog.
ElevatedButton(
style: ElevatedButton.styleFrom(primary: Colors.green),
onPressed: () {
final DateTime now = DateTime.now();
showTimePicker(
context: context,
initialTime: TimeOfDay(hour: now.hour, minute: now.minute),
).then((TimeOfDay? value) {
if (value != null) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text(value.format(context)),
action: SnackBarAction(label: 'OK', onPressed: () {}),
),
);
}
});
},
child: const Text('Time Picker Dialog'),
),
////// Date Picker Dialog.
ElevatedButton(
style: ElevatedButton.styleFrom(primary: Colors.blue),
onPressed: () {
showDatePicker(
context: context,
initialDate: DateTime.now(),
firstDate: DateTime(2018),
lastDate: DateTime(2025),
).then((DateTime? value) {
if (value != null) {
DateTime _fromDate = DateTime.now();
_fromDate = value;
final String date = DateFormat.yMMMd().format(_fromDate);
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(content: Text('Selected date: $date')),
);
}
});
},
child: const Text('Date Picker Dialog'),
),
////// DateRange Picker Dialog.
ElevatedButton(
style: ElevatedButton.styleFrom(primary: Colors.purple),
onPressed: () {
showDateRangePicker(
context: context,
firstDate: DateTime(2018),
lastDate: DateTime(2025),
).then((DateTimeRange? value) {
if (value != null) {
DateTimeRange _fromRange =
DateTimeRange(start: DateTime.now(), end: DateTime.now());
_fromRange = value;
final String range =
'${DateFormat.yMMMd().format(_fromRange.start)} - ${DateFormat.yMMMd().format(_fromRange.end)}';
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(content: Text(range)),
);
}
});
},
child: const Text('Date Range Picker Dialog'),
),
////// Bottom Sheet Dialog.
ElevatedButton(
style: ElevatedButton.styleFrom(primary: Colors.orange),
onPressed: () {
// Or: showModalBottomSheet(), with model bottom sheet, clicking
// anywhere will dismiss the bottom sheet.
showBottomSheet<String>(
context: context,
builder: (BuildContext context) => Container(
decoration: const BoxDecoration(
border: Border(top: BorderSide(color: Colors.black12)),
),
child: ListView(
shrinkWrap: true,
primary: false,
children: <Widget>[
const ListTile(
dense: true,
title: Text('This is a bottom sheet'),
),
const ListTile(
dense: true,
title: Text('Click OK to dismiss'),
),
ButtonBar(
children: <Widget>[
TextButton(
onPressed: () => Navigator.pop(context),
child: const Text('OK'),
),
],
),
],
),
),
);
},
child: const Text('Bottom Sheet'),
),
]
.map(
(Widget button) => Container(
padding: const EdgeInsets.symmetric(vertical: 8.0),
child: button,
),
)
.toList(),
);
}
}


Comments