Created
March 9, 2023 23:21
-
-
Save pdaug/aa10389c23c7938c2228bae7b1e4b268 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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