Unverified Commit cea5d552 authored by Janice Collins's avatar Janice Collins Committed by GitHub

Fix three additional cases (#85497)

parent 24d608b2
...@@ -215,8 +215,9 @@ class NavigationRail extends StatefulWidget { ...@@ -215,8 +215,9 @@ class NavigationRail extends StatefulWidget {
/// The rail's elevation or z-coordinate. /// The rail's elevation or z-coordinate.
/// ///
/// If [Directionality] is [TextDirection.LTR], the inner side is the right /// If [Directionality] is [intl.TextDirection.LTR], the inner side is the
/// side, and if [Directionality] is [TextDirection.RTL], it is the left side. /// right side, and if [Directionality] is [intl.TextDirection.RTL], it is
/// the left side.
/// ///
/// The default value is 0. /// The default value is 0.
final double? elevation; final double? elevation;
......
...@@ -979,9 +979,10 @@ abstract class WidgetController { ...@@ -979,9 +979,10 @@ abstract class WidgetController {
/// soft keyboard. /// soft keyboard.
/// ///
/// Specify `platform` as one of the platforms allowed in /// Specify `platform` as one of the platforms allowed in
/// [Platform.operatingSystem] to make the event appear to be from that type /// [platform.Platform.operatingSystem] to make the event appear to be from
/// of system. Defaults to "web" on web, and "android" everywhere else. Must not be /// that type of system. Defaults to "web" on web, and "android" everywhere
/// null. Some platforms (e.g. Windows, iOS) are not yet supported. /// else. Must not be null. Some platforms (e.g. Windows, iOS) are not yet
/// supported.
/// ///
/// Keys that are down when the test completes are cleared after each test. /// Keys that are down when the test completes are cleared after each test.
/// ///
...@@ -1009,9 +1010,10 @@ abstract class WidgetController { ...@@ -1009,9 +1010,10 @@ abstract class WidgetController {
/// from a soft keyboard. /// from a soft keyboard.
/// ///
/// Specify `platform` as one of the platforms allowed in /// Specify `platform` as one of the platforms allowed in
/// [Platform.operatingSystem] to make the event appear to be from that type /// [platform.Platform.operatingSystem] to make the event appear to be from
/// of system. Defaults to "web" on web, and "android" everywhere else. Must not be /// that type of system. Defaults to "web" on web, and "android" everywhere
/// null. Some platforms (e.g. Windows, iOS) are not yet supported. /// else. Must not be null. Some platforms (e.g. Windows, iOS) are not yet
/// supported.
/// ///
/// Keys that are down when the test completes are cleared after each test. /// Keys that are down when the test completes are cleared after each test.
/// ///
...@@ -1033,8 +1035,9 @@ abstract class WidgetController { ...@@ -1033,8 +1035,9 @@ abstract class WidgetController {
/// not from a soft keyboard. /// not from a soft keyboard.
/// ///
/// Specify `platform` as one of the platforms allowed in /// Specify `platform` as one of the platforms allowed in
/// [Platform.operatingSystem] to make the event appear to be from that type of /// [platform.Platform.operatingSystem] to make the event appear to be from
/// system. Defaults to "web" on web, and "android" everywhere else. May not be null. /// that type of system. Defaults to "web" on web, and "android" everywhere
/// else. May not be null.
/// ///
/// Returns true if the key event was handled by the framework. /// Returns true if the key event was handled by the framework.
/// ///
......
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