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

azir-theme

v1.0.9

Published

A powerfull tool to customize React native app theme, components,style,....

Downloads

139

Readme

Azir Framwork list : https://azir.io/docs

AzirTheme usage

All the colors, sizes and layout rules are stored in our default theme. Every component inherits its styling rules from this Package. Imagine this... You're building an application and you have 30 buttons using the primary color but you feel like that color doesn't really suit your project. You can re-write our theme file with only the things you want to change by using our theme components and all Azir components will change the that certain style.

We use Galio Framework as a base of our framework .

1. Components

  • AzirTheme: default theme for components exporting an object with { COLORS, SIZES } the origion settings.
  • withAzir: HoC for any React-Native component with args: Component and optional styles. By using this, you can access constants we have in our default theme.
  • AzirProvider: React Context Provider getting custom theme from props and pass it to the React Context.

2. Usage

  • install any of our available components .
  • import { theme, withAzir, AzirProvider } from 'azir-theme'
  • export default withAzir(YourComponent, componentStyles);
  • custom theme constants will overwrite the default Azir theme constants
const customTheme = {
  SIZES: { FONT: 120, BASE: 18, BORDER_RADIUS: 0, HR_PADDING: 0 },
  // this will overwrite the Azir SIZES BASE value 16
  COLORS: { THEME: "#ff9900" }
  // this will overwrite the Azir COLORS PRIMARY color #B23AFC
};
<AzirProvider theme={customTheme}>
  <YourRootComponent />
</AzirProvider>;

2.1 withAzir in-depth usage and explanation

Exporting a React class/function using our withAzir function enables your component to consume Azir's React Context and pass down theme in your component as a prop or as an argument for styles. So now you can use our constant colors and sizes in your own components/screens.

const styles = theme =>
  StyleSheet.create({
    container: {
      flex: 1,
      backgroundColor: theme.COLORS.FACEBOOK
    }
  });
export default withAzir(youComponent, styles);

3. Theme COLORS & SIZES

Use the following reference tables to create your own custom theme

COLORS reference table

| Color name | Default value | Description | | :------------- | :---------------------- | :-------------------------------------------------------------------------------------------- | | SOCIAL | | FACEBOOK | #3B5998 | For social Facebook button | | TWITTER | #5BC0DE | For social Twitter button | | DRIBBBLE | #EA4C89 | For social Dribble button | | Azir | | THEME | #B23AFC | Theme default color | | PRIMARY | #B23AFC | Primary color for Buttons | | INFO | #1232FF | Info color for Buttons & Text | | ERROR | #FE2472 | Info color for error messages | | WARNING | #FF9C09 | Warning color for warning messages | | SUCCESS | #45DF31 | Success color for success messages | | COMPONENTS | | INPUT | #808080 | Input backgroundColor | | PLACEHOLDER | #9FA5AA | Input placeholder text color | | NAVBAR | #F9F9F9 | NavBar text color | | BLOCK | #808080 | Block border color | | ICON | #000000 | Icon default color | | STANDARD | | WHITE | #FFFFFF | White color | | BLACK | #000000 | Black color | | GREY | #898989 | Grey color | | MUTED | #9FA5AA | Text muted color | | TRANSPARENT | transparent | Transparent value for Block, Button and other components | | NEUTRAL | rgba(255,255,255, 0.65) | Text neutral color white with 65% transparency |

SIZES reference table

const { height, width } = Dimensions.get('screen'); By default the size of 16 is used to calculate all the sizes

| Size name | Default value | | :------------------- | :---------------: | | THEME | | BASE | 16 | | FONT | 16 | | ICON | 16 | | OPACITY | 0.8 | | BORDER_RADIUS | 0 | | BORDER_WIDTH | 0 | | ICON | | ICON_SIZE | 16 * 9 | | BUTTON | | BUTTON_WIDTH | 16 * 9 | | BUTTON_HEIGHT | 16 * 2.75 | | BUTTON_SHADOW_RADIUS | 10 |