Unverified Commit 8b201b98 authored by Kabo's avatar Kabo Committed by GitHub

Update build doc (#58754)

parent 5eaaad41
...@@ -665,7 +665,7 @@ abstract class StatelessWidget extends Widget { ...@@ -665,7 +665,7 @@ abstract class StatelessWidget extends Widget {
/// The framework calls this method when this widget is inserted into the tree /// The framework calls this method when this widget is inserted into the tree
/// in a given [BuildContext] and when the dependencies of this widget change /// in a given [BuildContext] and when the dependencies of this widget change
/// (e.g., an [InheritedWidget] referenced by this widget changes). This /// (e.g., an [InheritedWidget] referenced by this widget changes). This
/// method can potentially be called in every frames should not have any side /// method can potentially be called in every frame and should not have any side
/// effects beyond building a widget. /// effects beyond building a widget.
/// ///
/// The framework replaces the subtree below this widget with the widget /// The framework replaces the subtree below this widget with the widget
...@@ -1328,7 +1328,7 @@ abstract class State<T extends StatefulWidget> with Diagnosticable { ...@@ -1328,7 +1328,7 @@ abstract class State<T extends StatefulWidget> with Diagnosticable {
/// * After calling [deactivate] and then reinserting the [State] object into /// * After calling [deactivate] and then reinserting the [State] object into
/// the tree at another location. /// the tree at another location.
/// ///
/// This method can potentially be called in every frames and should not have /// This method can potentially be called in every frame and should not have
/// any side effects beyond building a widget. /// any side effects beyond building a widget.
/// ///
/// The framework replaces the subtree below this widget with the widget /// The framework replaces the subtree below this widget with the 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