Commit ab1cd3f8 authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

Fix doc comment about onPressed for various buttons (#7555)

parent 34b9ce85
...@@ -21,8 +21,8 @@ import 'theme.dart'; ...@@ -21,8 +21,8 @@ import 'theme.dart';
/// corners. Avoid using flat buttons where they would blend in with other /// corners. Avoid using flat buttons where they would blend in with other
/// content, for example in the middle of lists. /// content, for example in the middle of lists.
/// ///
/// If the [onPressed] callback is not specified or null, then the button will /// If the [onPressed] callback is null, then the button will be disabled,
/// be disabled, will not react to touch, and will be colored as specified by /// will not react to touch, and will be colored as specified by
/// the [disabledColor] property instead of the [color] property. If you are /// the [disabledColor] property instead of the [color] property. If you are
/// trying to change the button's [color] and it is not having any effect, check /// trying to change the button's [color] and it is not having any effect, check
/// that you are passing a non-null [onPressed] handler. /// that you are passing a non-null [onPressed] handler.
......
...@@ -29,8 +29,8 @@ final Object _kDefaultHeroTag = new Object(); ...@@ -29,8 +29,8 @@ final Object _kDefaultHeroTag = new Object();
/// buttons should be used for positive actions such as "create", "share", or /// buttons should be used for positive actions such as "create", "share", or
/// "navigate". /// "navigate".
/// ///
/// If the [onPressed] callback is not specified or null, then the button will /// If the [onPressed] callback is null, then the button will be disabled and
/// be disabled and will not react to touch. /// will not react to touch.
/// ///
/// See also: /// See also:
/// ///
......
...@@ -25,8 +25,8 @@ import 'tooltip.dart'; ...@@ -25,8 +25,8 @@ import 'tooltip.dart';
/// Icon buttons are commonly used in the [AppBar.actions] field, but they can /// Icon buttons are commonly used in the [AppBar.actions] field, but they can
/// be used in many other places as well. /// be used in many other places as well.
/// ///
/// If the [onPressed] callback is not specified or null, then the button will /// If the [onPressed] callback is null, then the button will be disabled and
/// be disabled, will not react to touch. /// will not react to touch.
/// ///
/// Requires one of its ancestors to be a [Material] widget. /// Requires one of its ancestors to be a [Material] widget.
/// ///
......
...@@ -18,11 +18,10 @@ import 'theme.dart'; ...@@ -18,11 +18,10 @@ import 'theme.dart';
/// in long busy lists of content, or in wide spaces. Avoid using raised buttons /// in long busy lists of content, or in wide spaces. Avoid using raised buttons
/// on already-raised content such as dialogs or cards. /// on already-raised content such as dialogs or cards.
/// ///
/// If the [onPressed] callback is not specified or null, then the button will /// If the [onPressed] callback is null, then the button will be disabled and by
/// be disabled and by default will appear like a flat button in the /// default will appear like a flat button in the [disabledColor]. If you are
/// [disabledColor]. If you are trying to change the button's [color] and it is /// trying to change the button's [color] and it is not having any effect, check
/// not having any effect, check that you are passing a non-null [onPressed] /// that you are passing a non-null [onPressed] handler.
/// handler.
/// ///
/// Requires one of its ancestors to be a [Material] widget. /// Requires one of its ancestors to be a [Material] widget.
/// ///
......
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