Skip to content

Instantly share code, notes, and snippets.

@okwasniewski
Created February 26, 2025 12:03
Show Gist options
  • Save okwasniewski/9c4f81c3236af8adff749242bbb894d0 to your computer and use it in GitHub Desktop.
Save okwasniewski/9c4f81c3236af8adff749242bbb894d0 to your computer and use it in GitHub Desktop.
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