Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

react-native-yollar

diyorbek10MITdeprecated0.0.8TypeScript support: included

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

Library of simple components for React Native

readme

react-native-yollar

Library of simple components for React Native

Installation

Npm:

npm i --save expo expo-font @expo-google-fonts/montserrat @expo-google-fonts/open-sans

Yarn:

yarn add expo expo-font @expo-google-fonts/montserrat @expo-google-fonts/open-sans

Usage

import { TextField, Typography } from "react-native-yollar";

export default function App() {
  return (
    <View>
      <Typography variant="title" color="primary">
        Title
      </Typography>

      <TextField
        placeholder="Type some text"
        helperText="Instructions"
        variant="filled"
      />
    </View>
  )
}