Last active
August 27, 2022 17:23
-
-
Save andrew-levy/040e024973ca2ca906901aaa33cc6476 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
import { VStack, Text, Button } from "swiftui-react-native"; | |
function StylingExample() { | |
return ( | |
<VStack | |
alignment="leading" | |
backgroundColor="systemGray6" | |
cornerRadius={8} | |
> | |
<Text font="title3">Styling is easy with modifiers!</Text> | |
<Button padding={5} action={() => console.log("pressed")}> | |
<Text foregroundColor="white">Press me</Text> | |
</Button> | |
</VStack> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment