Skip to content

Instantly share code, notes, and snippets.

@andrew-levy
Last active August 24, 2022 15:18
Show Gist options
  • Save andrew-levy/42b729dd55eb9c3f3e8adb5248cfe964 to your computer and use it in GitHub Desktop.
Save andrew-levy/42b729dd55eb9c3f3e8adb5248cfe964 to your computer and use it in GitHub Desktop.
import {
VStack,
Text,
TextField,
useBinding,
} from 'swiftui-react-native';
function App() {
const text = useBinding('');
return (
<VStack
aligment="leading"
backgroundColor="systemGray6"
padding={{ leading: 30 }}
cornerRadius={20}
>
<Text font="title">Some cool text</Text>
<Image systemName="bolt.fill" frame={{ width: 100, height: 100}} />
<TextField text={text} placeholder="Name" />
</VStack>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment