Git Product home page Git Product logo

react-native-web-tailwindcss's Introduction

react-native-tailwindcss npm npm

A react native styling system, based on TailwindCSS

Easily apply styles to react native components in a tailwindCSS-like fashion. The utility classes are transformed to object valid names and are all children from an object t, tw, theme or tailwind.

import {t} from 'react-native-tailwindcss';

<View style={[t.absolute, t.inset0, t.p4, t.bgBlue500]} />

Use the tailwind.config.js file as you know and love to customize or just use the default tailwind styles.

In react native sometimes you only need a color value, we've got you covered. The color object contains all your defined colors.

import {color} from 'react-native-tailwindcss';

<StatusBar backgroundColor={color.blue500} />

React native is no css styling so there are some "special cases". Some elements are not necessary and are ignored. Things like breakpoints, plugins, corePlugin disabling, prefixes, separators, variation and the important toggle.

You should also take a look at some special cases:

Usage

Install this package

npm install react-native-tailwindcss

Initialize a new tailwindCSS config file

npx tailwind init

or the complete tailwindCSS config file

npx tailwind init --full

or just use an existing one.

General conversions

Every 'class' becomes CamelCase instead of tailwindCSS default - separated.

border-t-2 => tw.borderT2

A - in the beginning of a 'class' becomes a _.

-mt-2 => tw._mt2

A / also becomes a _ to separate the numbers.

w-1/3 => tw.w1_3

These conversions happen also when adding new items to the config file. If there is anything not working or working different then expected please create an issue.

Special cases

Shadows

  • Android does not use the shadow props to cast shadows, just an elevation value.

    • The elevation value is by default the shadowRadius / 2
    • It can be changed by adding the elevation value after the shadow separated by a ,.
      (eg.: default: '0 1px 3px 0 rgba(0, 0, 0, .1), 5')
  • Text shadows use the same shadows as box shadows

  • Multiple shadows are not supported in React native. (the first shadow will be used)

  • inner and outline shadows are ignored

Directional Layout

When you need directional layout React Native offers variations to make life easier. Instead of using 'left' or 'right', 'start' and 'end' can be used.

react-native-tailwindcss offers classes to embrace this way of directional layout. every 'class' with L or R, has also an S and E 'class' for start and end.

Testing

npm run test

react-native-web-tailwindcss's People

Watchers

 avatar

react-native-web-tailwindcss's Issues

Updated react-native-tailwindcss

Hi @Lucas-Geitner

I want to thank you because thanks to this fork I understood that there was a problem with react-native-tailwindcss when using react-native-web.
I just updated react-native-tailwindcss to 1.1.5 with support for react-native-web.

greetings
@TVke

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.