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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@crossbuildui/core

v2.0.0

Published

Core theme, context, and base components for CrossBuild UI

Downloads

12

Readme

@crossbuildui/core

The core package for CrossBuild UI, providing essential theming capabilities, context providers, and base themed components for React Native applications.

Features

  • Theming: Easily define and switch between light and dark themes, or provide your own custom theme.
  • Themed Components: A set of basic React Native components (View, Text, Pressable, etc.) that automatically adapt to the current theme.
  • Customizable: Override default theme values or provide a completely custom theme structure.
  • Context-Based: Uses React Context to propagate theme information throughout your component tree.

Installation

npm install @crossbuildui/core
# or
yarn add @crossbuildui/core

Peer Dependencies:

This package has react and react-native as peer dependencies. Ensure they are installed in your project.

"peerDependencies": {
  "react": ">=17.0.0",
  "react-native": ">=0.60.0"
}

Usage

  1. Wrap your application with ThemeProvider:

    In your main App.tsx (or equivalent):

    import React from 'react';
    import { ThemeProvider, View, Text, defaultAppConfig } from '@crossbuildui/core';
    // import { yourCustomTheme } from './path/to/yourCustomTheme'; // Optional
    
    const App = () => {
      // To use a custom theme, pass it to the ThemeProvider:
      // const myTheme = { ...defaultAppConfig, themes: { light: { colors: { primary: { DEFAULT: 'green' } } } } };
    
      return (
        // <ThemeProvider theme={myTheme}> {/* With custom theme */}
        <ThemeProvider> {/* With default theme */}
          <MainScreen />
        </ThemeProvider>
      );
    };
    
    const MainScreen = () => {
      // Use themed components
      return (
        <View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
          <Text>Hello from CrossBuild UI!</Text>
        </View>
      );
    };
    
    export default App;
  2. Using Themed Components and useTheme Hook:

    import React from 'react';
    import { View, Text, useTheme } from '@crossbuildui/core';
    
    const MyComponent = () => {
      const { colors, mode, layout, toggleTheme } = useTheme();
    
      return (
        <View style={{ backgroundColor: colors.background, padding: layout.borderRadius.md }}>
          <Text style={{ color: colors.primary.DEFAULT }}>Current mode: {mode}</Text>
          {/* <Pressable onPress={toggleTheme}><Text>Toggle Theme</Text></Pressable> */}
        </View>
      );
    };

Customization

You can provide a theme prop to the ThemeProvider to customize the appearance. The theme prop should be a partial AppConfig object. You can import defaultAppConfig and the AppConfig type to help structure your custom theme.

// myCustomTheme.ts
import { AppConfig, defaultAppConfig } from '@crossbuildui/core';

export const myCustomTheme: Partial<AppConfig> = {
  themes: {
    light: {
      colors: {
        primary: {
          ...defaultAppConfig.themes.light.colors.primary,
          '500': '#FF5733',
          'DEFAULT': '#FF5733',
        },
      },
    },
  },
};

Then pass it to the provider: <ThemeProvider theme={myCustomTheme}>...</ThemeProvider>

Contributing

Please refer to the main repository at https://github.com/crossbuildui/components.

License

MIT