This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.
2021-04-02 02:24:13 +03:00

10 lines
539 B
JavaScript

import * as React from 'react';
import { View } from 'react-native';
// This is a shim view for platforms that aren't supported by Expo.
// The component and prop types should match all of the other platform variations.
export default function NativeLinearGradient(props) {
const { colors, locations, startPoint, endPoint, ...viewProps } = props;
console.warn('LinearGradient is not available on this platform');
return React.createElement(View, Object.assign({}, viewProps));
}
//# sourceMappingURL=NativeLinearGradient.js.map