npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@capacitor-community/safe-area

v6.0.0-alpha.7

Published

Capacitor Plugin that exposes the safe area insets from the native iOS/Android device to your web project.

Downloads

4,229

Readme

Introduction

On web and iOS the safe area insets work out of the box. That is, on these platforms the env(safe-area-inset-*) CSS variables will have the correct values by default. On Android (in combination with Capacitor), however, those CSS variables will not have the correct values when Edge-to-Edge mode is enabled. So we need to work some magic in order to have access to the correct values. This plugin does that by detecting the safe area insets on Android, and injecting them as CSS variables to the browser. On web and iOS it will just fallback to the given values (which, again, are working out of the box).

There's one small but important quirck though, since we cannot override the native env(safe-area-inset-*) variables, the values are instead written to custom var(--safe-area-inset-*) variables.

Edge-to-Edge

You'll only need access to the safe area insets when you want to display your app edge-to-edge, by drawing your app content behind the system bars. The system bars are the status bar and the navigation bar. See the comparison table below for clarification:

This plugin, therefore, also provides utilities for styling those system bars and its content. It enables you to set the color of the bars to any color (e.g. black, white or transparent). It also enables you to set the color of the content (i.e. icon color) to either light or dark.

Installation

npm install @capacitor-community/safe-area
npx cap sync

Usage

Enabling the plugin

This plugin can be enabled either by using the API or by using the Configuration. It's also possible to combine those two.

Enable by using the API

import { SafeArea } from '@capacitor-community/safe-area';

SafeArea.enable({
  config: {
    customColorsForSystemBars: true,
    statusBarColor: '#00000000', // transparent
    statusBarContent: 'light',
    navigationBarColor: '#00000000', // transparent
    navigationBarContent: 'light',
  },
});

Enable by using the Configuration

See the Configuration documentation below for examples.

[!IMPORTANT] If you're enabling this plugin by using the configuration only and not by calling any of the API methods, you should still import the plugin like so:

import '@capacitor-community/safe-area';

Using the CSS variables

Having enabled the plugin, it will inject the correct safe area insets as CSS variables to the browser. This enables you to use those variables inside your CSS. You're now able to do this for example:

#header {
  padding-top: var(--safe-area-inset-top);
}

Or maybe you want to do something like this:

#header {
  padding-top: calc(var(--safe-area-inset-top) + 1rem);
}

[!IMPORTANT] It's important to note that the used CSS variables are var(--safe-area-inset-*) and not env(safe-area-inset-*). Unfortunately it's not (yet) possible to override the native env( variables. So therefore custom variables are injected instead.

Using the plugin in an SSR environment

This plugin can be used in an SSR environment. But you should manually call initialize like so:

import { initialize } from '@capacitor-community/safe-area';

initialize();

Note that this step is only needed for users using this plugin in an SSR environment.

Background information on calling initialize

Calling initialize will set initial safe area values. It will inject var(--safe-area-inset-*) CSS variables with the values set to max(env(safe-area-inset-*), 0px) as properties to the document root. This makes sure the CSS variables can be used immediately and everywhere. This is especially important for Android when the plugin isn't enabled (yet) and always for web and iOS. Because otherwise - in those cases - var(--safe-area-inset-*) won't have any values.

API

enable(...)

enable(options: { config: Config; }) => Promise<void>

| Param | Type | | ------------- | ------------------------------------------------------ | | options | { config: Config; } |


disable(...)

disable(options: { config: Config; }) => Promise<void>

| Param | Type | | ------------- | ------------------------------------------------------ | | options | { config: Config; } |


Interfaces

Config

| Prop | Type | Description | Default | | ------------------------------- | ------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | | customColorsForSystemBars | boolean | Flag indicating that you are responsible for drawing the background color for the system bars. If false it will fallback to the default colors for the system bars. | true | | statusBarColor | string | Specifies the background color of the status bar. Should be in the format #RRGGBB or #AARRGGBB. Will only have effect if customColorsForSystemBars is set to true. | '#000000' | | statusBarContent | 'light' | 'dark' | Specifies the color of the content (i.e. icon color) in the status bar. | 'light' | | navigationBarColor | string | Specifies the background color of the navigation bar. Should be in the format #RRGGBB or #AARRGGBB. Will only have effect if customColorsForSystemBars is set to true. | '#000000' | | navigationBarContent | 'light' | 'dark' | Specifies the color of the content (i.e. icon color) in the navigation bar. | 'light' | | offset | number | Specifies the offset to be applied to the safe area insets. This means that if the safe area top inset is 30px, and the offset specified is 10px, the safe area top inset will be exposed as being 40px. Usually you don't need this, but on iOS the safe area insets are mostly offset a little more by itself already. So you might want to compensate for that on Android. It's totally up to you. The offset will be applied if Edge-to-Edge mode is enabled only. | 0 |

Configuration

For ease of use and speed, these configuration values are available:

| Prop | Type | Description | Default | | ------------------------------- | ------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | | enabled | boolean | Flag indicating whether of not the plugin should be enabled from startup. | false | | customColorsForSystemBars | boolean | Flag indicating that you are responsible for drawing the background color for the system bars. If false it will fallback to the default colors for the system bars. | true | | statusBarColor | string | Specifies the background color of the status bar. Should be in the format #RRGGBB or #AARRGGBB. Will only have effect if customColorsForSystemBars is set to true. | '#000000' | | statusBarContent | 'light' | 'dark' | Specifies the color of the content (i.e. icon color) in the status bar. | 'light' | | navigationBarColor | string | Specifies the background color of the navigation bar. Should be in the format #RRGGBB or #AARRGGBB. Will only have effect if customColorsForSystemBars is set to true. | '#000000' | | navigationBarContent | 'light' | 'dark' | Specifies the color of the content (i.e. icon color) in the navigation bar. | 'light' | | offset | number | Specifies the offset to be applied to the safe area insets. This means that if the safe area top inset is 30px, and the offset specified is 10px, the safe area top inset will be exposed as being 40px. Usually you don't need this, but on iOS the safe area insets are mostly offset a little more by itself already. So you might want to compensate for that on Android. It's totally up to you. The offset will be applied if Edge-to-Edge mode is enabled only. | 0 |

Examples

In capacitor.config.json:

{
  "plugins": {
    "SafeArea": {
      "enabled": true,
      "customColorsForSystemBars": true,
      "statusBarColor": '#000000',
      "statusBarContent": 'light',
      "navigationBarColor": '#000000',
      "navigationBarContent": 'light',
      "offset": 0
    }
  }
}

In capacitor.config.ts:

/// <reference types="@capacitor-community/safe-area" />

import { CapacitorConfig } from '@capacitor/cli';

const config: CapacitorConfig = {
  plugins: {
    SafeArea: {
      enabled: true,
      customColorsForSystemBars: true,
      statusBarColor: '#000000',
      statusBarContent: 'light',
      navigationBarColor: '#000000',
      navigationBarContent: 'light',
      offset: 0,
    },
  },
};

export default config;