https://github.com/mucahitdev/react-native-reset-css
Bringing the web's reset CSS experience to React Native for a consistent mobile UI
https://github.com/mucahitdev/react-native-reset-css
component react-native
Last synced: 5 months ago
JSON representation
Bringing the web's reset CSS experience to React Native for a consistent mobile UI
- Host: GitHub
- URL: https://github.com/mucahitdev/react-native-reset-css
- Owner: mucahitdev
- License: mit
- Created: 2023-10-14T21:37:41.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-06T20:30:58.000Z (over 1 year ago)
- Last Synced: 2025-08-30T14:52:43.519Z (10 months ago)
- Topics: component, react-native
- Language: TypeScript
- Homepage:
- Size: 1.41 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# react-native-reset-css
Bringing the web's reset CSS experience to React Native for a consistent mobile UI
## Installation
```sh
npm install react-native-reset-css
or
yarn add react-native-reset-css
```
## Usage
### Basic Usage
#### 1. Import the `reset` function
```js
import { customizeView } from 'react-native-reset-css';
or;
import Customizer from 'react-native-reset-css';
```
#### 2. Customize your Component
```js
customizeView({
style: {
backgroundColor: 'blue',
},
});
or;
Customizer.View({
style: {
backgroundColor: 'yellow',
},
});
```
## Contributing
See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.
## License
MIT