removed ripple effect from bottom nav

This commit is contained in:
dstark5
2023-09-13 22:43:14 -07:00
parent 7f3e255259
commit 013cce078f
2 changed files with 7 additions and 3 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;
}