New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

react-native-gradientview

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-gradientview

Gradients android,ios,web

latest
Source
npmnpm
Version
1.0.8
Version published
Maintainers
1
Created
Source

Gradientview

android: api 21+
ios : 10.0+
web: svg

Getting started

$ npm install react-native-gradientview --save
$ react-native link react-native-gradientview

or

$ yarn add react-native-gradientview

IOS

Add Swift

(expo sdk >=42 you don't need to do this)

/ios/name_project

add a .swift file

Usage

import { LinearGradient, RadialGradient,ConicGradient ,Color } from 'react-native-gradientview';

// TODO: What to do with the module?
   <LinearGradient {...props}
     colors={[Color('red'),Color('#ccc'),...]}
    />

    <RadialGradient {...props} />
    <ConicGradient {...props} />


LinearGradient

Nametypedefault
startPointObject x y0.5 - 0
endPointObject x y0.5 - 1
colorsArray [Color]white,black
positionsArray [number]undefined
tileMode(android,web) String'clamp'

RadialGradient

Nametypedefault
colorsArray [Color]white,black
positionsArray [number]undefined
cxnumber0.5
cynumber0.5
rxnumber0.5
rxnumber0.5
tileMode(android,web) String'clamp'

ConicGradient

NametypeOSdefault
startPointObjectios0.5 - 0
endPointObjectios0.5 - 1
colorsArray [Color]android,web,ioswhite,black
positionsArray [number]android,web,iosundefined
centerXnumberandroid,web0.5
centerYnumberandroid,web0.5
conicRotationnumberandroid,web0

Keywords

react-native

FAQs

Package last updated on 28 Nov 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