Searched refs:showDialog (Results 1 – 25 of 34) sorted by relevance
12
/third_party/flutter/flutter/packages/flutter/test/material/ |
D | dialog_test.dart | 24 showDialog<void>( 219 final Future<int> result = showDialog<int>( 262 showDialog<void>( 283 showDialog<void>( 328 showDialog<void>( 372 showDialog<void>( 445 showDialog<void>( 486 return showDialog<bool>( 488 barrierDismissible: true, // showDialog() returns null if tapped outside the dialog 495 Navigator.pop(context, true); // showDialog() returns true [all …]
|
D | button_bar_test.dart | 83 showDialog<void>(
|
D | will_pop_test.dart | 87 showDialog<void>( 186 return showDialog<bool>(
|
D | dialog_theme_test.dart | 19 showDialog<void>(
|
D | text_field_focus_test.dart | 31 showDialog<void>(
|
D | theme_test.dart | 204 showDialog<void>( 236 showDialog<void>(
|
/third_party/flutter/flutter/packages/flutter/lib/src/material/ |
D | dialog.dart | 35 /// * [showDialog], which actually displays the dialog and returns its result. 40 /// Typically used in conjunction with [showDialog]. 149 /// Typically passed as the child widget to [showDialog], which displays the 159 /// return showDialog<void>( 193 /// * [showDialog], which actually displays the dialog and returns its result. 198 /// Typically used in conjunction with [showDialog]. 403 /// * [showDialog], which actually displays the dialog and returns its result. 420 /// with a value for [showDialog] to complete its future with. 452 /// Typically passed as the child widget to [showDialog], which displays the 458 /// options are represented as an enum. The [showDialog] method here returns [all …]
|
D | card.dart | 97 /// * [showDialog], to display a modal card.
|
D | about.dart | 155 /// The `context` argument is passed to [showDialog], the documentation for 166 showDialog<void>(
|
D | time_picker.dart | 1473 /// Pass this widget to [showDialog]. The value returned by [showDialog] is the 1737 /// The [context] argument is passed to [showDialog], the documentation for 1792 return await showDialog<TimeOfDay>(
|
D | date_picker.dart | 1091 /// The [context] argument is passed to [showDialog], the documentation for 1177 return await showDialog<DateTime>(
|
D | app.dart | 233 /// Material specific features such as [showDialog] and [showMenu], and widgets
|
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/material/ |
D | leave_behind_demo.dart | 274 return showDialog<bool>( 284 Navigator.pop(context, true); // showDialog() returns true 290 Navigator.pop(context, false); // showDialog() returns false
|
D | persistent_bottom_sheet_demo.dart | 59 showDialog<void>(
|
D | dialog_demo.dart | 70 showDialog<T>(
|
D | drawer_demo.dart | 248 showDialog<void>(
|
D | full_screen_dialog_demo.dart | 120 return await showDialog<bool>(
|
D | text_form_field_demo.dart | 148 return await showDialog<bool>(
|
/third_party/icu/tools/unicodetools/com/ibm/rbm/gui/ |
D | AboutDialog.java | 19 public static void showDialog(Frame parent) { in showDialog() method in AboutDialog
|
/third_party/flutter/flutter/examples/flutter_gallery/lib/gallery/ |
D | updater.dart | 43 final bool wantsUpdate = await showDialog<bool>(context: context, builder: _buildDialog);
|
D | demo.dart | 76 showDialog<void>(
|
D | demos.dart | 257 documentationUrl: 'https://docs.flutter.io/flutter/material/showDialog.html',
|
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/transformations/ |
D | transformations_demo.dart | 45 showDialog<Column>(
|
/third_party/flutter/flutter/examples/stocks/lib/ |
D | stock_settings.dart | 68 showDialog<bool>(
|
D | stock_home.dart | 97 showDialog<void>(
|
12