Skip to content

Instantly share code, notes, and snippets.

@pdaug
Created March 9, 2023 23:21
Show Gist options
  • Select an option

  • Save pdaug/aa10389c23c7938c2228bae7b1e4b268 to your computer and use it in GitHub Desktop.

Select an option

Save pdaug/aa10389c23c7938c2228bae7b1e4b268 to your computer and use it in GitHub Desktop.
// npx expo install expo-linear-gradient
import React from "react"
import { Text } from "react-native"
import { LinearGradient } from "expo-linear-gradient"
export default function App() {
return <LinearGradient colors={["red", "transparent"]}>
<Text> Olá, testando o Linear Gradient do Expo </Text>
</LinearGradient>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment