Skip to content

Instantly share code, notes, and snippets.

@andrew-levy
Last active August 27, 2022 17:23
Show Gist options
  • Save andrew-levy/040e024973ca2ca906901aaa33cc6476 to your computer and use it in GitHub Desktop.
Save andrew-levy/040e024973ca2ca906901aaa33cc6476 to your computer and use it in GitHub Desktop.
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