Unverified Commit 2736c8c1 authored by xster's avatar xster Committed by GitHub

Add more dialog doc cross-reference (#30887)

parent 259641c4
...@@ -125,6 +125,7 @@ bool _isInAccessibilityMode(BuildContext context) { ...@@ -125,6 +125,7 @@ bool _isInAccessibilityMode(BuildContext context) {
/// * [CupertinoPopupSurface], which is a generic iOS-style popup surface that /// * [CupertinoPopupSurface], which is a generic iOS-style popup surface that
/// holds arbitrary content to create custom popups. /// holds arbitrary content to create custom popups.
/// * [CupertinoDialogAction], which is an iOS-style dialog button. /// * [CupertinoDialogAction], which is an iOS-style dialog button.
/// * [AlertDialog], a Material Design alert dialog.
/// * <https://developer.apple.com/ios/human-interface-guidelines/views/alerts/> /// * <https://developer.apple.com/ios/human-interface-guidelines/views/alerts/>
class CupertinoAlertDialog extends StatelessWidget { class CupertinoAlertDialog extends StatelessWidget {
/// Creates an iOS-style alert dialog. /// Creates an iOS-style alert dialog.
......
...@@ -189,6 +189,7 @@ class Dialog extends StatelessWidget { ...@@ -189,6 +189,7 @@ class Dialog extends StatelessWidget {
/// ///
/// * [SimpleDialog], which handles the scrolling of the contents but has no [actions]. /// * [SimpleDialog], which handles the scrolling of the contents but has no [actions].
/// * [Dialog], on which [AlertDialog] and [SimpleDialog] are based. /// * [Dialog], on which [AlertDialog] and [SimpleDialog] are based.
/// * [CupertinoAlertDialog], an iOS-styled alert dialog.
/// * [showDialog], which actually displays the dialog and returns its result. /// * [showDialog], which actually displays the dialog and returns its result.
/// * <https://material.io/design/components/dialogs.html#alert-dialog> /// * <https://material.io/design/components/dialogs.html#alert-dialog>
class AlertDialog extends StatelessWidget { class AlertDialog extends StatelessWidget {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment