React Native UI Components base on Vant
React Native Vant
Install
yarn add rn-vant
Or
npm install rn-vant
Preview
Open the camera app on your device and scan the code below:
Quick start
The following are some code examples of rn-vant:
import React from 'react';
import { Button } from 'rn-vant';
function App() {
return <Button type="primary">Default Button</Button>;
};
export default App;