한동우(Paul)
한동우(Paul)
In my case, it was solved by checking the test device network connection.
Add Subclass solution: ```swift override func viewWillDisappear(_ animated: Bool) { super.viewWillDisappear(animated) self.automaticallyAdjustsScrollViewInsets = false self.navigationController?.hidesBarsOnSwipe = false self.navigationController?.hidesBarsWhenKeyboardAppears = false self.navigationController?.hidesBarsWhenVerticallyCompact = false self.navigationController?.setToolbarHidden(true, animated: false) } ```
@AxesandGrinds Hi I solved this problem using an internal plugin. I haven't sent a PR yet, but the code is below. I haven't done the iOS side yet. But I'll...