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

rn-class

v1.0.29

Published

react-native 에 스타일을 쉽게 쓸수 있게 만든 프로젝트

Downloads

8

Readme

react-native 에 스타일을 쉽게 쓸수 있게 만든 프로젝트

react-native-responsive-screen 을 이용하여 모든 디바이스 에 동일한 style 를 사용 가능 할꺼라고 기대함.

install 
npm install --save rn-class 
or 
npm install --save https://github.com/khjde1207/rn-class
use 
import React, {Component} from 'react';
import {Platform, StyleSheet, Text, View} from 'react-native';

import C from 'rn-class'
C.addComp(Text);
C.addComp(View);

export default App = ()=>{
  return (
    <C.View cls="ai-c jc-c po-fulla"> 
      <C.Text cls="f4">Test</C.Text>
    </C.View>
  )
}

or


import React, {Component} from 'react';
import {Platform, StyleSheet, Text, View} from 'react-native';

import C from 'rn-class'  // The name can be used with ease. example  : import ASDF from ''rn-class'
import * as NB  from 'native-base';

C.addComp(NB , "NB"); <--- If you only call it once in app.js, you can just use it after that.

export default App = ()=>{
  return (
    <C.NB.Container>
      <C.NB.Header />
      <C.NB.Content>
        <C.NB.Card>
              <C.NB.CardItem header>
                <C.NB.Text>NativeBase</C.NB.Text>
              </C.NB.CardItem>
              <C.NB.CardItem>
                <C.NB.Body>
                  <C.NB.Text>
                    //Your text here
                  </C.NB.Text>
                </C.NB.Body>
              </C.NB.CardItem>
              <C.NB.CardItem footer>
                <C.NB.Text>GeekyAnts</C.NB.Text>
              </C.NB.CardItem>
          </C.NB.Card>
      </C.NB.Content>
    </C.NB.Container>
  )
}

C.addComp 시 두번째 인자에 name 를 추가 하여 UI 프레임 워크 충돌을 방지 할 수 있다.

<Text>
<C.NB.Text>

Advanced skill :

import React, {Component} from 'react';
import {Platform, StyleSheet, Text, View ,ScrollView ,TextInput} from 'react-native';

import C from './rn-class/index'  

C.addComp((props)=>{ 

  if(props.SC){
    return (<ScrollView {...props}></ScrollView>)
  }


  return <View {...props}></View>
}, "V");   

C.addComp((props)=>{ 
  return <Text {...props}>Text</Text>
}, "T");   


export default App = ()=>{
  arr = [];
  for(var i = 0 ; i < 1000 ; i++){
    arr .push(i);
  }
  return (
    <C.V SC cls="po-full" >  
      {
        arr.map((data, idx  )=>{
          return <C.T key={`test_1${idx}`} cls="f5 ta-c"></C.T>
        })
      }
    </C.V>
  )
}

마진 / 패딩 옵션 설명.

ma-30 ... ma1 .... ma30 : // {margin : -30} , {margin : 1} , {margin : 30} 너비 기준 ma-h-30 ~ ma-h30 : {margin : -30} //스크린 높이 기준의 30%

mb[idx] : marginBottom

me[idx] : marginEnd

mh[idx] : marginHorizontal

ml[idx] : marginLeft

mr[idx] : marginRight

ms[idx] : marginStart

mt[idx] : marginTop

mv[idx] : marginVertical

padding 옵션은 m -> p 로 변경 하면 됨.

너비 / 높이 w0 ~ w100 : //{width : 0} ... {width : 100}

h0 ~ h100 : //{height : 0} ... {height : 100}

h-w0 ~ h-w0 //{height : 0} ... {height : 100} //너비 기준

w-h0 ~ w-h0 //{width : 0} ... {width : 100} //너비 기준

너비 기준과 높이 기준이 있는 이유 :

<-- 이와 같이 너비와 높이 를 동일하게 하여 정사각형 box 를 만들 수 있음.

min-w[idx]

min-h-w[idx] : {minHeight : [idx]]} // 너비 기준

min-w-h[idx] : {minWidth : [idx]]} // 높이 기준

max-w[idx]

max-h[idx]

max-h-w[idx] :{maxHeight : [idx]]} // 너비 기준

max-w-h[idx] :{maxHeight : [idx]]} // 너비 기준

sdof : {shadowOffset : {width :, height : }}

sdof_X_Y : {shadowOffset : {width : X, height : Y }}

위치: 

l[idx]: {left: [idx]}

r[idx]: {right: [idx]}

t[idx]: {top: [idx]}

b[idx]: {bottom: [idx]}

border : 0~20

bw : {borderWidth : }

bbw : {borderBottomWidth : }

btw : {borderTopWidth : }

bew : {borderEndWidth : }

blw : {borderLeftWidth : }

brw : {borderRightWidth : }

bsw : {borderStartWidth : }

br-be : {borderBottomEndRadius:};

br-bl : {borderBottomLeftRadius:};

br-br : {borderBottomRightRadius:};

br-bs : {borderBottomStartRadius:};

br-te : {borderTopEndRadius:};

br-tl : {borderTopLeftRadius:};

br-tr : {borderTopRightRadius:};

br-ts : {borderTopStartRadius:};

br : {borderRadius:};

sdo-r = {shadowRadius:};

flex :

flx1 ~ 10 : {flex : 1} ~ {flex : 10}

flx-1 ~ -10 : {flex : 0.1} ~ {flex : 1}

flxb : flexBasis

flxg : flexGrow

flxs : flexShrink

"po-ab" : {position : "absolute"},

"po-re" : {position : "relative"},

"po-full" : {position : "absolute" , left : 0 , top : 0 , right : 0 , bottom : 0},

"po-fulla" : {position : "absolute" , left : 0 , top : 0 , width : wp(100) , height : hp(100)},

"ac-s" : {alignContent : 'flex-start'},

"ac-e" : {alignContent : 'flex-end'},

"ac-c" : {alignContent : 'center'},

"ac-t" : {alignContent : 'stretch'},

"ac-sb" : {alignContent : 'space-between'},

"ac-sa" : {alignContent : 'space-around'},

"ai-s" : {alignItems : 'flex-start'},

"ai-e" : {alignItems : 'flex-end'},

"ai-c" : {alignItems : 'center'},

"ai-t" : {alignItems : 'stretch'},

"ai-b" : {alignItems : 'baseline'},

"as-a" : {alignSelf : 'auto'},

"as-s" : {alignSelf : 'flex-start'},

"as-e" : {alignSelf : 'flex-end'},

"as-c" : {alignSelf : 'center'},

"as-t" : {alignSelf : 'stretch'},

"as-b" : {alignSelf : 'baseline'},

"dp-flx" : {display : "flex"},

"dp-none" : {display : "none"},

"flx-col" : {flexDirection : "row"},

"flx-row" : {flexDirection : "column"},

"flx-colr" : {flexDirection : "row-reverse"},

"flx-rowr" : {flexDirection : "column-reverse"},

"flx-w" : {flexWrap : "wrap"},

"flx-nw" : {flexWrap : "nowrap"},

"jc-s" : {justifyContent : 'flex-start'},

"jc-e" : {justifyContent : 'flex-end'},

"jc-c" : {justifyContent : 'center'},

"jc-sb" : {justifyContent : 'space-between'},

"jc-sa" : {justifyContent : 'space-around'},

"jc-se" : {justifyContent : 'space-evenly'},

기타:

'bfvv' : {backfaceVisibility : "visible"},

'bfvh' : {backfaceVisibility : "hidden"},

font

f[idx] : {fontSize : i};

lh[idx] : {lineHeight : i};

'fw-n' : {fontWeight : "normal"},

'fw-b' : {fontWeight : "bold"},

'fw-1' : {fontWeight : 100},

'fw-2' : {fontWeight : 200},

'fw-3' : {fontWeight : 300},

'fw-4' : {fontWeight : 400},

'fw-5' : {fontWeight : 500},

'fw-6' : {fontWeight : 600},

'fw-7' : {fontWeight : 700},

'fw-8' : {fontWeight : 800},

'fw-9' : {fontWeight : 900},

'tdl-n' : {textDecorationLine :"none"},

'tdl-u' : {textDecorationLine :"underline"},

'tdl-l' : {textDecorationLine :"line-through"},

'tdl-ul' : {textDecorationLine :"underline line-through"},

'of-v' : {overflow: "visible"},

'of-h' : {overflow: "hidden"},

resize :

'rsm-s' : {resizeMode : "stretch"},

'rsm-r' : {resizeMode : "repeat"},

'rsm-c' : {resizeMode : "center"},

'rsm-cov' : {resizeMode : "cover"},

'rsm-con' : {resizeMode : "contain"},

rtn[idx`] = {letterSpacing : wp(i)};

color:

bgc-[colorName] = {backgroundColor :o }

bc-[colorName] = {borderColor :o }

blc-[colorName] = {borderLeftColor :o }

btc-[colorName] = {borderTopColor :o }

brc-[colorName] = {borderRightColor :o }

bbc-[colorName] = {borderBottomColor :o }

bsc-[colorName] = {borderStartColor :o }

bec-[colorName] = {borderEndColor :o }

tsdoc-[colorName] = {textShadowColor : o};

tint-[colorName] = {tintColor : o};

selc-[colorName] = {selectionColor : o};

phtc-[colorName] ={placeholderTextColor : o};

subtc-[colorName] ={subtitleColor : o};

tc-[colorName] = {titleColor : o};

uc-[colorName] = {underlayColor:o};

chkc-[colorName] = {checkedColor : o}

unchkc-[colorName] = {uncheckedColor : o}

rec-[colorName] = {reverseColor : o}

winbgc-[colorName] = {windowBackgroundColor:o};

iconc-[colorName] = {iconColor:o};

seldc-[colorName] = {selectedColor : o};

statusc-[colorName] = {androidStatusBarColor:o}; //android

phic-[colorName] = {placeholderIconColor : o}//ios

tdc-[colorName] = {textDecorationColor : o}; //ios

colorName = {color : o};

https://github.com/khjde1207/rn-class/blob/master/Datas/colors.js

Transforms