uvop / react-platformula

React components and apis which work cross-platform

Home Page:https://react-platformula.github.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Introduction

React components and apis which work for Web, Android and iOS!
simple API and usage in any react project

Usage

  • Install
      npm install --save react-platformula
      # or yarn
      yarn add react-platformula
  • import and use!
    import Block, { getCustom as getCustomBlock } from 'react-platformula/block';
    
    // regular block, which is just like react-native's view
    <Block /> 
    
    // Red block, not exposing or needing extra dependencies!
    const RedBlock = getCustomBlock({
      backgroundColor: 'red',
    });
    
    <RedBlock />

About

React components and apis which work cross-platform

https://react-platformula.github.io

License:MIT License


Languages

Language:JavaScript 100.0%