capacitor-plugin-safe-area icon indicating copy to clipboard operation
capacitor-plugin-safe-area copied to clipboard

capacitor plugin to get safeArea info on Android and IOS, support Capacitor6

Results 8 capacitor-plugin-safe-area issues
Sort by recently updated
recently updated
newest added

Nice plugin! I was in need of a plugin that allowed me to use the edge-to-edge functionality on Android just as we're able to use it on iOS. I ended...

Hello there, Just updated to capacitor 6 and the current plugin version 3.0.1. When building to my iOS device (17.4.1) I get the error : "SafeArea plugin not implemented on...

I have an angular app purely using capacitor 4 without Ionic. I am using the plugin and it works like a charm on Android but unfortunately not so good on...

The method is mentioned in the readme, but is not implemented: `Error calling method removeAllListeners on plugin SafeArea: No method found.`

I can't seem to figure out how to reliably get the correct values upon launch. I'm doing this: ```js const listenForSafeArea = async (store) => { const {insets} = await...

### Issue I am using this plugin to set insets on Android and make the app layout behind the navigation bar. I am having trouble setting the app behind the...

Xcode is showing the following warnings: /ios/App/App/AppDelegate.swift:74:50: 'statusBarFrame' was deprecated in iOS 13.0: Use the statusBarManager property of the window scene instead. Can this be updated? My minium IOS version...

Here is the code: ``` await SafeArea.addListener('safeAreaChanged', (data:any) => { const { insets } = data; for (const [key, value] of Object.entries(insets)) { document.documentElement.style.setProperty( `--safe-area-inset-${key}`, `${value}px`, ); } });