Skip to content

Instantly share code, notes, and snippets.

@leon3s
leon3s / LinearGradient.js
Created November 10, 2017 14:45
LinearGradient expo compatibility with react-native-web
import React from 'react';
import PropTypes from 'prop-types';
import { View } from 'react-native';
const propTypes = {
colors: PropTypes.arrayOf(PropTypes.string),
start: PropTypes.arrayOf(PropTypes.number),
end: PropTypes.arrayOf(PropTypes.number),
style: View.propTypes.style,
children: PropTypes.oneOfType([