expo-linear-gradient
Version:
Provides a React component that renders a gradient view.
11 lines • 561 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
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 _jsx(View, { ...viewProps });
}
//# sourceMappingURL=NativeLinearGradient.js.map