Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

forte-ui

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

forte-ui

Forte UI

  • 0.0.2
  • unpublished
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

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

  • Theme UI Docs

Library

License

MIT

Keywords

FAQs

Package last updated on 28 Sep 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc