diff --git a/flutter/shell/platform/tizen/channels/platform_channel.cc b/flutter/shell/platform/tizen/channels/platform_channel.cc index 704f488..15fd677 100644 --- a/flutter/shell/platform/tizen/channels/platform_channel.cc +++ b/flutter/shell/platform/tizen/channels/platform_channel.cc @@ -39,6 +39,8 @@ constexpr char kSetPreferredOrientationsMethod[] = "SystemChrome.setPreferredOrientations"; constexpr char kSetSystemUIOverlayStyleMethod[] = "SystemChrome.setSystemUIOverlayStyle"; +constexpr char kIsLiveTextInputAvailable[] = + "LiveText.isLiveTextInputAvailable"; constexpr char kTextKey[] = "text"; constexpr char kValueKey[] = "value"; @@ -158,7 +160,8 @@ void PlatformChannel::HandleMethodCall( SetPreferredOrientations(orientations); result->Success(); } else if (method == kSetApplicationSwitcherDescriptionMethod || - method == kSetSystemUIOverlayStyleMethod) { + method == kSetSystemUIOverlayStyleMethod || + method == kIsLiveTextInputAvailable) { // Not supported on Tizen. Ignore. result->Success(); } else {