This is documentation for the next SDK version. For up-to-date documentation, see the latest version (SDK 52).
Expo MeshGradient
A module that exposes MeshGradient view from SwiftUI to React Native.
iOS
tvOS
Installation
Terminal
-
npx expo install expo-mesh-gradient
If you are installing this in an existing React Native app, make sure to install expo
in your project.
API
import { MeshGradientView } from 'expo-mesh-gradient';
function App() {
return (
<MeshGradientView
style={{ flex: 1 }}
columns={3}
rows={3}
colors={['red', 'purple', 'indigo', 'orange', 'white', 'blue', 'yellow', 'green', 'cyan']}
points={[
[0.0, 0.0],
[0.5, 0.0],
[1.0, 0.0],
[0.0, 0.5],
[0.5, 0.5],
[1.0, 0.5],
[0.0, 1.0],
[0.5, 1.0],
[1.0, 1.0],
]}
/>
);
}
No API data file found, sorry!