Document that State#build(BuildContext context) is always the same as State#context (#4116)

Fixes #4114
This commit is contained in:
Adam Barth 2016-05-24 16:34:51 -07:00
parent e8e9d4633c
commit f012a0fdfb

View File

@ -461,6 +461,10 @@ abstract class State<T extends StatefulWidget> {
/// The given build context object contains information about the location in /// The given build context object contains information about the location in
/// the tree at which this widget is being built. For example, the context /// the tree at which this widget is being built. For example, the context
/// provides the set of inherited widgets for this location in the tree. /// provides the set of inherited widgets for this location in the tree.
///
/// The context argument is always the same as [State.context]. This argument
/// is provided redundantly here to match the [WidgetBuilder] function
/// signature used by [StatelessWidget.build] and other widgets.
Widget build(BuildContext context); Widget build(BuildContext context);
/// Called when an Inherited widget in the ancestor chain has changed. Usually /// Called when an Inherited widget in the ancestor chain has changed. Usually