/react-platformula

React components and apis which work cross-platform

Primary LanguageJavaScriptMIT LicenseMIT

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 />