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 🙏

© 2026 – Pkg Stats / Ryan Hefner

liquid-glass-native-tab-kit

v0.1.0

Published

A cross-platform React Native bottom tab bar built on the real native UITabBar — get Apple's native Liquid Glass effect for free on iOS 26+, plus custom-sized icons, active/inactive icon swapping, and reliable tint colors via experimental_bakedTintColors.

Readme

liquid-glass-native-tab-kit

A cross-platform React Native bottom tab bar built on the real native UITabBar.

Because it uses the actual platform tab bar on iOS, you get Apple's native Liquid Glass effect for free on iOS 26+ — the translucent, light-bending, blurred tab bar — with zero extra configuration. Not a fake blur view, not an approximation. The real thing, rendered by the OS.

It also bakes in the practical workarounds you need when a native tab bar won't let you style things the JS way:

  • 🎯 Custom-sized icons — resize/pad them in the asset, not in code
  • 🔁 Active / inactive icons — swap images or just recolor with a tint
  • 🎨 Reliable tint colors on iOS — via experimental_bakedTintColors
  • 🍎 Native Liquid Glass on iOS 26+ — inherited from the OS tab bar
  • 🤖 Graceful Android fallback — JS tab bar with focus-based icon swapping

Why this exists

Native tab bars look and feel great — and on iOS 26 they render in Liquid Glass automatically. The catch: because they're real native components, you can't just set fontSize, resize an icon, or expect a tintColor to apply the way you would with a JS-drawn tab bar. Those props simply don't reach the native view.

This package packages the three fixes that actually work:

1. Can't change the icon size or text? Change the asset.

The native bar renders your icon at its own scale. Instead of fighting it in code, export the icon at the exact size and padding you want from Figma and ship that image (@2x / @3x). What you upload is what you get.

2. Active vs. inactive icons

Two ways, both supported:

  • One template image + tint color — let activeTintColor / inactiveTintColor do the work (recommended for iOS).
  • Separate activeIcon / inactiveIcon images — used on Android, where the JS tab bar re-renders on focus and can swap them.

3. The tint color won't apply on iOS → experimental_bakedTintColors

On iOS the native UITabBar renders your icons as-is and ignores the active/inactive tint unless you tell the library to bake the tint into the icons. That one flag is the difference between "my colors do nothing" and "it just works":

<NativeTab.Navigator experimental_bakedTintColors>

native-tabs-kit sets this for you (on by default).


Install

npm install liquid-glass-native-tab-kit @bottom-tabs/react-navigation @react-navigation/bottom-tabs

@bottom-tabs/react-navigation, @react-navigation/bottom-tabs, react, and react-native are peer dependencies.


Usage

import { NativeTabsKit } from "liquid-glass-native-tab-kit";
import Home from "./Home";
import Wallet from "./Wallet";
import Settings from "./Settings";

const screens = [
  { name: "Home",     component: Home,     icon: require("./icons/home.png") },
  { name: "Wallet",   component: Wallet,   icon: require("./icons/wallet.png") },
  {
    name: "Settings",
    component: Settings,
    // optional: separate art per state (used on Android)
    activeIcon:   require("./icons/settings-active.png"),
    inactiveIcon: require("./icons/settings.png"),
  },
];

export default function Tabs() {
  return (
    <NativeTabsKit
      screens={screens}
      activeTintColor="#0A84FF"
      inactiveTintColor="#8E8E93"
      initialRouteName="Home"
    />
  );
}

Wrap it in a NavigationContainer as usual.


Props

| Prop | Type | Default | Description | | --- | --- | --- | --- | | screens | Array | [] | { name, component, icon, activeIcon?, inactiveIcon? } per tab | | activeTintColor | string | — | Tint for the focused tab | | inactiveTintColor | string | "#8E8E93" | Tint for unfocused tabs | | initialRouteName | string | — | Starting tab | | backgroundColor | string | "#fff" | Android tab bar background (iOS uses native Liquid Glass) | | screenProps | object | {} | Extra props spread into every screen | | bakedTintColors | boolean | true | iOS: bake tint into icons so active/inactive colors apply |


Notes

  • Ships as source (JSX). Metro transpiles it from node_modules automatically — no build step required.
  • Liquid Glass is provided by the OS on iOS 26+. On older iOS it renders the standard native tab bar.

License

MIT © Talha Rasool