File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
flutter/shell/platform/tizen/channels Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,8 @@ constexpr char kSetPreferredOrientationsMethod[] =
39
39
" SystemChrome.setPreferredOrientations" ;
40
40
constexpr char kSetSystemUIOverlayStyleMethod [] =
41
41
" SystemChrome.setSystemUIOverlayStyle" ;
42
+ constexpr char kIsLiveTextInputAvailable [] =
43
+ " LiveText.isLiveTextInputAvailable" ;
42
44
43
45
constexpr char kTextKey [] = " text" ;
44
46
constexpr char kValueKey [] = " value" ;
@@ -158,7 +160,8 @@ void PlatformChannel::HandleMethodCall(
158
160
SetPreferredOrientations (orientations);
159
161
result->Success ();
160
162
} else if (method == kSetApplicationSwitcherDescriptionMethod ||
161
- method == kSetSystemUIOverlayStyleMethod ) {
163
+ method == kSetSystemUIOverlayStyleMethod ||
164
+ method == kIsLiveTextInputAvailable ) {
162
165
// Not supported on Tizen. Ignore.
163
166
result->Success ();
164
167
} else {
You can’t perform that action at this time.
0 commit comments