
Security News
MCP Steering Committee Launches Official MCP Registry in Preview
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
@whjvenyl/safe-area
Advanced tools
A plugin to expose the safe area insets from the native iOS/Android device to your web project.
@capacitor-community/safe-area
A plugin to expose the safe area insets from the native iOS/Android device to your web project.
Maintainer | GitHub | Social |
---|---|---|
Kevin Pacheco | PolymorphiK | @k_pacheco10 |
Soon(TM) - As long as the official repo isn't published this serves as a placeholder.
iOS: Soon(TM)
For Android, register plugin in your main activity.
import com.getcapacitor.community.safearea.SafeAreaPlugin;
public class MainActivity extends BridgeActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.init(savedInstanceState, new ArrayList<Class<? extends Plugin>>() {{
add(SafeAreaPlugin.class);
}});
}
}
Here is a bonus tip, to get full screen mode use this in your main activity. Requires Android 28+
@Override
public void onResume() {
super.onResume();
// Requires API 28+
this.getWindow().getAttributes().layoutInDisplayCutoutMode = WindowManager.LayoutParams.LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES;
View decorView = this.getWindow().getDecorView();
decorView.setSystemUiVisibility(
View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
// Set the content to appear under the system bars so that the
// content doesn't resize when the system bars hide and show.
| View.SYSTEM_UI_FLAG_LAYOUT_STABLE
| View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
// Hide the nav bar and status bar
| View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_FULLSCREEN);
}
To change the Android build version, change the minSdkVersion to at least 28 in the variables.gradle file.
For more information please see Android's immersive, and short edges documentation.
Register the plugin via the entry file of your project.
// Register Capacitor Plugin...
import '@capacitor-community/safe-area';
It is strongly recomended that you use the SafeAreaController as it makes it super easy to use the plugin :)
import { SafeAreaController } from '@capacitor-community/safe-area';
// Initialize the controller.
SafeAreaController.load();
// Gets the insets object
// Shape
/*
{
top: number,
bottom: number,
right: number,
left: number,
}
*/
SafeAreaController.getInsets();
// Use this to listen for changes in the insets.
// i.e. when the device is rotated
SafeAreaController.addListener((insets) => {
});
// Use this to force the plugin to invoke the event
// Example, after you add a listener perhaps you invoke refresh
// to get the most up-to-date inset values.
SafeAreaController.refresh();
// Uninitialize the controller when you don't need it anymore.
SafeAreaController.unload();
Once the SafeAreaController has been loaded, it will inject CSS variables for you to use in your style sheets.
/* styling for every case Web, iOS, and/or Android */
.myContainer {
paddingTop: max(1.5rem, val(--safe-area-inset-top));
paddingLeft: max(1.5rem, val(--safe-area-inset-left));
paddingRight: max(1.5rem, val(--safe-area-inset-right));
paddingBottom: val(--safe-area-inset-bottom);
}
/* If you need Android specific stying */
.myContainerForAndroidOnly {
paddingTop: max(1.5rem, val(--android-safe-area-inset-top));
paddingLeft: max(1.5rem, val(--android-safe-area-inset-left));
paddingRight: max(1.5rem, val(--android-safe-area-inset-right));
paddingBottom: val(--android-safe-area-inset-bottom);
}
/* If you need iOS specific styling */
.myContainerForIOSOnly {
paddingTop: max(1.5rem, val(--ios-safe-area-inset-top));
paddingLeft: max(1.5rem, val(--ios-safe-area-inset-left));
paddingRight: max(1.5rem, val(--ios-safe-area-inset-right));
paddingBottom: val(--ios-safe-area-inset-bottom);
}
This can also be used with the styles attribute in something like React.js for example.
// This div will grow to cover the area of the cutout
// this would be at the very top.
<div
style={{
height: "var(--safe-area-inset-top)",
backgroundColor: "#12005e"
}}>
</div>
Here is a component that can be used by React.js developers. This handles everything for you via the SafeAreaController. There is a hook you can use as well called useSafeAreaInsetsState which will return a JSON object with top, bottom, right, and left number properties.
import * as React from 'react';
import { SafeAreaController } from '@capacitor-community/safe-area';
const StateContext = React.createContext();
export const useSafeAreaInsetsState = () => {
const context = React.useContext(StateContext);
if(context === undefined)
throw new Error("Cannot use 'useSafeAreaInsetsState' outside of a SafeAreaInsetsProvider!");
return context;
}
const SafeAreaInsetsProvider = ({children}) => {
const [state, setState] = React.useState({
top: 0,
bottom: 0,
right: 0,
left: 0
});
React.useState(() => {
SafeAreaController.addListener((insets) => {
setState(insets);
});
SafeAreaController.load();
return () => {
SafeAreaController.removeAllListeners();
SafeAreaController.unload();
}
}, []);
return (
<StateContext.Provider value={state}>
{children}
</StateContext.Provider>
)
};
export default SafeAreaInsetsProvider;
You can then use this provider ideally in the index file of your project.
ReactDOM.render(
<React.StrictMode>
<SafeAreaInsetsProvider>
<App />
</SafeAreaInsetsProvider>
</React.StrictMode>,
document.getElementById('root')
);
FAQs
A plugin to expose the safe area insets from the native iOS/Android device to your web project.
We found that @whjvenyl/safe-area demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.