react-native-ready-comps
v0.0.19
Published
React Native Ready Comps is a library where you can find ready-to-use and customizable components, like buttons, textboxes, sliding panels, or forms, for react native. This lib is MIT licensed.
Downloads
10
Readme
React native Ready Comps
React Native Ready Comps is a library where you can find ready-to-use and customizable components, like buttons, textboxes, sliding panels, or forms, for react native. This lib is MIT licensed.
Installation and build
> npm i // install dependencies
> npx react-native run-android // launch using android emulator
> npx react-native start // launch the development server
Press r
to reload the application (but it should be automatically reloaded when you save a modification), and d
to open the development menu on the smartphone.
Get started
First, you MUST wrap your application in a GestureHandlerRootView
from react-native-gesture-handler
if you want to use the SlidingPanel
and everything gesture handling related.
const App = () => {
return (
<GestureHandlerRootView>
{/* your app */}
</GestureHandlerRootView>
)
}
MIT License
The MIT License is an open-source license that allow anyone to use, modify and distribute this software with the condition that you must add a link to the creator's github repository in your application.
Contributing
You are a developer and you want to contribute to this awesome project ? Great ! Just raed the Coding style to be aware of the syntax we ask. You must also read and understand the Code of conduct. If you want details about how to create branches, pull requests, or commits, read our CONTRIBUTING.md.