Created
February 26, 2025 12:03
-
-
Save okwasniewski/9c4f81c3236af8adff749242bbb894d0 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 { StyleSheet } from 'react-native'; | |
import { SwiftUIStoreViewView } from 'swiftui-store-view'; | |
export default function App() { | |
return ( | |
<SwiftUIStoreViewView style={styles.container} /> | |
); | |
} | |
const styles = StyleSheet.create({ | |
container: { | |
flex: 1, | |
width: '100%', | |
height: '100%', | |
}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment