0.0.2 • Published 3 years ago

forte-ui v0.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

Forte UI (Work In Progress)

UI Library for Expo / React Native / React Native Web based on Dripsy

Components

  • Accordion
  • Box (Row / Col)
  • Button
  • Card
  • Chip
  • Hovered
  • Input
    • Input Text
    • Input Password
    • Input TextArea
    • Input Select
    • Input Select Async
  • Menu
  • Portal (extracted from React Native Paper)
  • Skeleton (extracted from Moti/Skeleton)
  • Table

How to use

yarn add forte-ui

Wrap your app with Provider component

import React from "react"
import { Provider } from "forte-ui"

const App = ({children}) => (
  <Provider>
    <SomeLayoutComponent>
      {children}
    </SomeLayoutComponent>
  <Provider>
)
import React from "react"
import { Button, Input } from "forte-ui"

const Page = () => {

  const [value,onChangeText] = React.useState("")

  const onPress = () => {
    console.log("value",value)
  }

  return (
  <App>
    <Input.Text {...{value,onChangeText}} />
    <Button onPress={onPress} variant="primary">Click Me</Button>
  </App>
)}

For more information

Library

License

MIT

0.0.2

3 years ago

0.0.1

3 years ago