Skip to content

Bringing the web's reset CSS experience to React Native for a consistent mobile UI

License

Notifications You must be signed in to change notification settings

mucahitdev/react-native-reset-css

Repository files navigation

react-native-reset-css

Bringing the web's reset CSS experience to React Native for a consistent mobile UI

Installation

npm install react-native-reset-css

or

yarn add react-native-reset-css

Usage

Basic Usage

1. Import the reset function

import { customizeView } from 'react-native-reset-css';

or;

import Customizer from 'react-native-reset-css';

2. Customize your Component

customizeView({
  style: {
    backgroundColor: 'blue',
  },
});

or;

Customizer.View({
  style: {
    backgroundColor: 'yellow',
  },
});

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT

About

Bringing the web's reset CSS experience to React Native for a consistent mobile UI

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published