Skip to content

Commit ae53bde

Browse files
bwikbsswift-kim
authored andcommitted
Enable PlatformViewChannel method(resize) (flutter-tizen#103)
* This is necessary for webview resize. Signed-off-by: MuHong Byun <[email protected]>
1 parent 65ab52d commit ae53bde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shell/platform/tizen/channels/platform_view_channel.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ void PlatformViewChannel::HandleMethodCall(
220220
double width = ExtractDoubleFromMap(arguments, "width");
221221
double height = ExtractDoubleFromMap(arguments, "height");
222222
it->second->Resize(width, height);
223-
result->NotImplemented();
223+
result->Success();
224224
} else if (method == "touch") {
225225
int type, button;
226226
double x, y, dx, dy;

0 commit comments

Comments
 (0)