Update flutter version

This commit is contained in:
problematicconsumer
2023-08-20 14:08:36 +03:30
parent 69d1e5be02
commit edf2279b20
3 changed files with 33 additions and 20 deletions

View File

@@ -31,6 +31,11 @@ bool FlutterWindow::OnCreate() {
this->Show();
});
// Flutter can complete the first frame before the "show window" callback is
// registered. The following call ensures a frame is pending to ensure the
// window is shown. It is a no-op if the first frame hasn't completed yet.
flutter_controller_->ForceRedraw();
return true;
}