You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -675,7 +675,7 @@ In Flutter, install a package using the following instructions:
675
675
676
676
1. Add the package name and version to the `pubspec.yaml` dependencies section.
677
677
The example below shows how to add the `google_sign_in` Dart package to the
678
-
`pubspec.yaml`file. Check your spaces when working in the YAML file because **white space matters**!
678
+
`pubspec.yaml`file. Check your spaces when working in the YAML file because **white space matters**!
679
679
<!-- skip -->
680
680
```yaml
681
681
dependencies:
@@ -1132,7 +1132,7 @@ internal state to manage.
1132
1132
describing does not depend on anything other than the configuration information
1133
1133
in the object itself and the [`BuildContext`](https://docs.flutter.io/flutter/widgets/BuildContext-class.html) in which the widget is inflated.
1134
1134
1135
-
[AboutDialog](https://docs.flutter.io/flutter/material/AboutDialog-class.html), [CircleAvator](https://docs.flutter.io/flutter/material/CircleAvatar-class.html), and [Text](https://docs.flutter.io/flutter/widgets/Text-class.html) are examples of stateless widgets which subclass [StatelessWidget](https://docs.flutter.io/flutter/widgets/StatelessWidget-class.html).
1135
+
[AboutDialog](https://docs.flutter.io/flutter/material/AboutDialog-class.html), [CircleAvatar](https://docs.flutter.io/flutter/material/CircleAvatar-class.html), and [Text](https://docs.flutter.io/flutter/widgets/Text-class.html) are examples of stateless widgets which subclass [StatelessWidget](https://docs.flutter.io/flutter/widgets/StatelessWidget-class.html).
1136
1136
1137
1137
1138
1138
<!-- skip -->
@@ -1601,9 +1601,9 @@ const MyApp = TabNavigator(
1601
1601
```
1602
1602
1603
1603
Flutter provides several specialized widgets for drawer and tab navigation:
1604
-
* [TabController](https://docs.flutter.io/flutter/material/TabController-class.html)—Coordinates the tab selection between a TabBar and a TabBarView.
1605
-
* [TabBar](https://docs.flutter.io/flutter/material/TabBar-class.html) —Displays a horizontal row of tabs.
1606
-
* [Tab](https://docs.flutter.io/flutter/material/Tab-class.html)—Creates a material design TabBar tab.
1604
+
* [TabController](https://docs.flutter.io/flutter/material/TabController-class.html)—Coordinates the tab selection between a TabBar and a TabBarView.
1605
+
* [TabBar](https://docs.flutter.io/flutter/material/TabBar-class.html) —Displays a horizontal row of tabs.
1606
+
* [Tab](https://docs.flutter.io/flutter/material/Tab-class.html)—Creates a material design TabBar tab.
1607
1607
* [TabBarView](https://docs.flutter.io/flutter/material/TabBarView-class.html)—Displays the widget that corresponds to the currently selected tab.
1608
1608
1609
1609
@@ -2159,7 +2159,7 @@ app.
2159
2159
In React Native, Animated APIs are used to create animations.
2160
2160
2161
2161
In Flutter, use the [`Animation`](https://docs.flutter.io/flutter/animation/Animation-class.html)
2162
-
class and the [`AnimationController`](https://docs.flutter.io/flutter/animation/AnimationController-class.html) class.
2162
+
class and the [`AnimationController`](https://docs.flutter.io/flutter/animation/AnimationController-class.html) class.
2163
2163
`Animation`is an abstract class that understands its current value and
2164
2164
its state (completed or dismissed). The `AnimationController` class lets you
2165
2165
play an animation forward or in reverse, or stop animation and set the animation
0 commit comments