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

@devraj-labs/vajra-ui-core

v2.2.0

Published

Headless, zero-dependency React Native layout and primitive components

Downloads

158

Readme

Vajra UI Core

Layout primitives for React Native.

npm version bundle size zero dependencies license

  


Why

Raw RN layout is verbose. Design systems fix that but ship a theme, a provider, and a dependency tree you didn't ask for.

Vajra UI Core is neither. It's a thin prop layer over the primitives you're already using — View, Text, TouchableOpacity. The whole thing is 9 kB and pulls in nothing. Drop it in, style with your own system, done.

// before
<View style={{ flexDirection: 'row', alignItems: 'center', paddingHorizontal: 16, gap: 8 }}>

// after
<Row align="center" px={16} gap={8}>

Install

yarn add @devraj-labs/vajra-ui-core

react and react-native are peer dependencies. Nothing else is.


Docs

| Component | | |-----------|--| | Box | docs/box | | Row | docs/row | | Col | docs/col | | Center | docs/center | | AbsoluteCenter | docs/absolute-center | | Spacer | docs/spacer | | Separator | docs/separator | | CoreText | docs/core-text | | CoreTextInput | docs/core-text-input | | CorePressable | docs/core-pressable | | Grid | docs/grid | | useDimensions | docs/use-dimensions |


Primitives

Box

Foundation View with shorthand layout and spacing props. Every other layout primitive is built on top of Box.

Full docs →


Row

Box with flexDirection="row" pre-applied. Use it anywhere you need horizontal layout.

Full docs →


Col

Box with flexDirection="column" pre-applied. Stacks children vertically.

Full docs →


Center

Box centered on both axes. No more alignItems + justifyContent boilerplate.

Full docs →


AbsoluteCenter

Fills its parent absolutely and centers children. Perfect for overlays, loaders, and empty states.

Full docs →


Spacer

Fixed-size gap between elements. Drop it between siblings instead of reaching for margin.

Full docs →


Separator

Horizontal or vertical divider line. One prop to switch orientation.

Full docs →


CoreText

Headless Text with typography shorthand props. Bring your own font and color system.

Full docs →


CoreTextInput

Headless TextInput with the same layout and typography props as CoreText.

Full docs →


CorePressable

TouchableOpacity with full layout prop support. Style your buttons without a wrapper View.

Full docs →


Grid

Compound responsive grid — Grid.Root + Grid.Item. Adapts to any screen width automatically.

Full docs →


useDimensions

Screen-aware dimension utilities. Responsive values without a context provider.

Full docs →


Examples

A runnable React Native CLI app lives in examples/app/.

cd examples/app

# iOS
bundle exec pod install --project-directory=ios
npx react-native run-ios

# Android
npx react-native run-android

License

MIT