Ad
UI Offset Within GMSPlacePickerViewController
I have implemented a GMSPlacesClient
and GMSPlacePickerViewController
, and the setup functions fine. However, there appears to be a vertical offset within the UI that creates an aesthetic issue: in search, the first item in the table is cut off, and after returning to the map, there is a black space at the top of the view.
I am pushing the view using [self.navigationController pushViewController:animated:];
Ad
Answer
Make sure the Translucent option is checked on your navigation bar inside navigation controller.
I had the same problem and realize that the Translucent is not checked.
Checking Translucent solved my problem.
I'm pretty sure this can help.
Ad
source: stackoverflow.com
Related Questions
- → Function Undefined in Axios promise
- → What are the pluses/minuses of different ways to configure GPIOs on the Beaglebone Black?
- → Click to navigate on mobile devices
- → Playing Video - Server is not correctly configured - 12939
- → How to allow api access to android or ios app only(laravel)?
- → Axios array map callback
- → Access the Camera and CameraRoll on Android using React Native?
- → Update React [Native] View on Day Change
- → Shopify iOS SDK - issue converting BuyProductVariant to BuyProduct
- → BigCommerce and shopify API
- → Warning: Each child in an array or iterator should have a unique "key" prop. Check the render method of `ListView`
- → React Native - Differences between Android and IOS
- → What is the difference between React Native and React?
Ad