Unverified Commit 5ed54d38 authored by Shi-Hao Hong's avatar Shi-Hao Hong Committed by GitHub

Use kIsWeb instead of private _kIsBrowser (#55333)

parent 7e997d20
...@@ -25,9 +25,6 @@ import 'text_editing.dart'; ...@@ -25,9 +25,6 @@ import 'text_editing.dart';
export 'dart:ui' show TextAffinity; export 'dart:ui' show TextAffinity;
// Whether we're compiled to JavaScript in a web browser.
const bool _kIsBrowser = identical(0, 0.0);
/// Indicates how to handle the intelligent replacement of dashes in text input. /// Indicates how to handle the intelligent replacement of dashes in text input.
/// ///
/// See also: /// See also:
...@@ -1056,7 +1053,7 @@ class TextInput { ...@@ -1056,7 +1053,7 @@ class TextInput {
static bool _debugEnsureInputActionWorksOnPlatform(TextInputAction inputAction) { static bool _debugEnsureInputActionWorksOnPlatform(TextInputAction inputAction) {
assert(() { assert(() {
if (_kIsBrowser) { if (kIsWeb) {
// TODO(flutterweb): what makes sense here? // TODO(flutterweb): what makes sense here?
return true; return true;
} }
......
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