All Projects → kevoj → react-native-background-shapes

kevoj / react-native-background-shapes

Licence: MIT License
Beautiful backgrounds shapes to React Native based in flex (Android + IOS)

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to react-native-background-shapes

react-native-bubble-tabbar
🧼 Bubble Tab Bar Component for React Native which supports React Navigation V5 and TypeScript
Stars: ✭ 43 (-33.85%)
Mutual labels:  react-native-component
CompilersCourse
Theory of compilation course, MIPT
Stars: ✭ 32 (-50.77%)
Mutual labels:  flex
react-native-category
react-native-category
Stars: ✭ 23 (-64.62%)
Mutual labels:  react-native-component
react-native-touchable-safe
A single easy-to-use `<Touchable>` component, which harnesses the power of all React Native's `Touchable*` components.
Stars: ✭ 15 (-76.92%)
Mutual labels:  react-native-component
C90Compiler-EIE2
C90 to MIPS I Compiler done as a coursework for EE2-15
Stars: ✭ 15 (-76.92%)
Mutual labels:  flex
react-native-value-picker
Cross-Platform iOS(ish) style picker for react native.
Stars: ✭ 18 (-72.31%)
Mutual labels:  react-native-component
bison-flex-cpp-example
GNU Bison and GNU Flex C++ example
Stars: ✭ 145 (+123.08%)
Mutual labels:  flex
svg-points
A specification for storing SVG shape data in Javascript, and some handy conversion functions
Stars: ✭ 87 (+33.85%)
Mutual labels:  shapes
react-native-user-inactivity
Simple component that alerts when the user is inactive (i.e. when the App surface hasn't been touched for X ms)
Stars: ✭ 148 (+127.69%)
Mutual labels:  react-native-component
react-native-boilerplate
React Native Boilerplate - React Native Starter Kits : react-navigation and its dependencies, redux, redux persist and redux thunk, redux toolkit, react native vector icons, react-native async storage
Stars: ✭ 68 (+4.62%)
Mutual labels:  react-native-component
iconic-input
Beautiful Input components for React Native... <IconicTextbox/> and much more!
Stars: ✭ 22 (-66.15%)
Mutual labels:  react-native-component
Code-VueWapDemo
“Vue教程--Wap端项目搭建从0到1”的源码
Stars: ✭ 19 (-70.77%)
Mutual labels:  flex
mosaicshapes
Transform pictures to Chuck Close inspired mosaic art.
Stars: ✭ 18 (-72.31%)
Mutual labels:  shapes
calculator
基于flex&goyacc实现的计算器
Stars: ✭ 23 (-64.62%)
Mutual labels:  flex
PGS
Processing Geometry Suite
Stars: ✭ 39 (-40%)
Mutual labels:  shapes
react-native-masonry-brick-list
Staggered Or Masonary List View For React Native Written in pure js
Stars: ✭ 24 (-63.08%)
Mutual labels:  react-native-component
Moonshine-IDE
Moonshine is a free and open source middleweight IDE built with ActionScript 3 for ActionScript 3, Apache Flex®, Apache Royale™, and Feathers development, with Cloud and Desktop support.
Stars: ✭ 86 (+32.31%)
Mutual labels:  flex
react-native-responsive-image-view
React Native component for scaling an Image within the parent View
Stars: ✭ 152 (+133.85%)
Mutual labels:  react-native-component
Katana
Katana is CSS Layout System made with Flexbox
Stars: ✭ 57 (-12.31%)
Mutual labels:  flex
react-native-android-bottom-navigation
Native UI Component of Android's BottomNavigation for react-native
Stars: ✭ 18 (-72.31%)
Mutual labels:  react-native-component

react-native-background-shapes

NPM version GitHub license

Beautiful backgrounds shapes to React Native based in flex (Android + IOS)

Examples

Installation

Yarn

yarn add react-native-background-shapes

Npm

npm i react-native-background-shapes

Basic usage

import react from "react";
import {View} from "react-native";
import {Shapes} from "react-native-background-shapes";

export const example () => {
return (
    <View>
        <Shapes />
    </View>
    );
}

Options

// Advance
 <Shapes
    primaryColor="#416DF8"
    secondaryColor="#2F53D5"
    height={3}
    borderRadius={20}
    figures={[
      {name: 'circle', position: 'center', size: 60},
      {name: 'donut', position: 'flex-start', axis: 'top', size: 80},
      {name: 'circle', position: 'center', axis: 'right', size: 100},
    ]}
 />
  • primaryColor: String, HEX color.
  • secondaryColor: String, HEX color.
  • height: Number, 1 = full screen, default (3.5)
  • borderRadius: Number, default 30
  • figures: Array
    • name: String = "circle","donut, "triangle", "diamondNarrow", "cutDiamond"
    • position: String = "flex-start", "center, "flex-end", "baseline", "stretch"
    • axis: String = "top", "right, "bottom", "left"

License

MIT © Leonardo Rico

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].