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

nativestyler

v1.0.21

Published

An advanced styling toolkit for React Native applications, providing dynamic, prop-based styling with efficient caching.

Downloads

46

Readme

NativeStyler

NativeStyler is an advanced styling toolkit designed for React Native applications, offering dynamic, prop-based styling combined with an efficient caching mechanism. This toolkit enables developers to implement responsive and adaptable styles that enhance the user experience while ensuring optimal performance. With its lightweight architecture, NativeStyler integrates seamlessly into your projects, making it an essential tool for both novice and experienced developers.

Features

  • Dynamic Prop-Based Styling: Dynamically adjust styles based on component props, enhancing UI responsiveness and flexibility.
  • Advanced Caching: Uses a sophisticated caching strategy to minimize re-rendering, significantly boosting performance.
  • Dynamic Theming with ThemeProvider: Seamlessly switch themes within your app using the integrated ThemeProvider.
  • Lightweight and Efficient: Designed to add minimal overhead, ensuring your project remains lean and fast.

Installation

Install NativeStyler using npm:

npm install nativestyler

Or using Yarn:

yarn add nativestyler

Performance Comparison

To understand the performance benefits of NativeStyler, we compared it against three popular styling solutions in React Native: StyleSheet, Styled Components, and Tailwind CSS. Each was evaluated based on the following criteria:

  • Render Time: Time taken to render components.
  • Memory Usage: Memory consumed by the app during the execution of styling tasks.
  • Bundle Size Impact: The effect of each library on the overall size of the application bundle.
  • Ease of Dynamic Styling: How each library handles dynamic styling changes, which can affect runtime performance.

Metrics

| Criteria | StyleSheet | NativeStyler | Styled Components | Tailwind CSS | |----------------------|------------|--------------|-------------------|--------------| | Render Time | Fast | Very Fast | Moderate | Fast | | Memory Usage | Low | Low | High | Moderate | | Bundle Size Impact | None | Low | Moderate | High | | Ease of Dynamic Styling | Low | High | High | Moderate |

Analysis

  • StyleSheet: Offers the fastest render times and lowest memory usage as it uses built-in React Native APIs, but lacks built-in capabilities for dynamic styling.
  • NativeStyler: Provides enhanced performance with advanced caching mechanisms and efficient dynamic styling, making it ideal for complex applications that require responsive and dynamic interfaces.
  • Styled Components: While offering powerful dynamic styling capabilities, it tends to have a higher memory and performance overhead compared to NativeStyler.
  • Tailwind CSS: Provides utility-first styling that is quick to write, but can increase the bundle size and has moderate performance when handling dynamic styles.

Usage

Basic Styled Component

Create styled components with dynamic properties based on props:

import React from 'react';
import { SafeAreaView, StatusBar, Text, View, useColorScheme } from 'react-native';
import { styled } from 'nativestyler';

// Define a dynamically styled component
const MyStyledView = styled(View)((props) => ({
  padding: 10,
  backgroundColor: props.primary ? 'green' : 'gray',
  borderRadius: props.rounded ? 20 : 0,
}));

function App() {
  const isDarkMode = useColorScheme() === 'dark';
  const backgroundStyle = {
    backgroundColor: isDarkMode ? 'darker' : 'lighter',
  };

  return (
    <SafeAreaView style={backgroundStyle}>
      <StatusBar barStyle={isDarkMode ? 'light-content' : 'dark-content'} />
      <MyStyledView primary rounded>
        <Text>Hello, styled components!</Text>
      </MyStyledView>
    </SafeAreaView>
  );
}

export default App;

Dynamic Theming with ThemeProvider

Leverage ThemeProvider to apply and switch themes dynamically across your application:

import React, { useState } from 'react';
import { Button, Text } from 'react-native';
import { ThemeProvider, styled } from 'nativestyler';
import { darkTheme, lightTheme } from './themes';  // Assume themes are defined externally

const ThemedView = styled(View)((props, theme) => ({
  flex: 1,
  backgroundColor: theme.colors.background,
  alignItems: 'center',
  justifyContent: 'center',
}));

const App = () => {
  const [theme, setTheme] = useState(lightTheme);

  const toggleTheme = () => {
    setTheme(theme === lightTheme ? darkTheme : lightTheme);
  };

  return (
    <ThemeProvider initialTheme={theme}>
      <ThemedView>
        <Text style={{ color: theme.colors.text }}>Theme: {theme === lightTheme ? 'Light' : 'Dark'}</Text>
        <Button title="Toggle Theme" onPress={toggleTheme} />
      </ThemedView>
    </ThemeProvider>
  );
};

export default App;

Testing Caching Mechanism

Test the caching mechanism by monitoring component re-renders with the React Profiler:

import React, { Profiler, useState } from 'react';
import { Button, Text, View } from 'react-native';
import { styled } from 'nativestyler';

const MyStyledView = styled(View)((props) => ({
  padding: props.padding,
  backgroundColor: 'lightblue',
}));

const renderCallback = (id, phase, actualDuration) => {
  console.log(`Render ${id} with phase ${phase} took ${actualDuration}ms`);
};

const App = () => {
  const [padding, setPadding] = useState(10);

  return (
    <Profiler id="StyledComponent" onRender={renderCallback}>
      <MyStyledView padding={padding}>
        <Text>Testing Caching</Text>
      </MyStyledView>
      <Button title="Toggle Padding" onPress={() => setPadding(padding === 10 ? 20 : 10)} />
    </Profiler>
  );
};

export default App;

Contributing

Contributions are welcome! Please feel free to fork the repository, make changes, and submit pull requests. You can also raise issues or provide feedback through the GitHub issue tracker.

Support

If you encounter any issues or have questions about NativeStyler, please open an issue in the GitHub repository. We are here to help!

License

NativeStyler is available under the MIT License. See the LICENSE file for more details.