2024-06-27 23:31:59 +02:00
|
|
|
import { Image, StyleSheet, Platform, ImageBackground } from 'react-native';
|
|
|
|
|
|
|
|
import { SafeAreaView } from 'react-native-safe-area-context';
|
2024-06-29 02:04:30 +02:00
|
|
|
import { ProductEditor } from '@/components/ProductEditor';
|
2024-06-27 23:31:59 +02:00
|
|
|
|
|
|
|
export default function HomeScreen() {
|
|
|
|
|
|
|
|
return (
|
|
|
|
<SafeAreaView>
|
|
|
|
<ProductEditor />
|
|
|
|
</SafeAreaView>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
titleContainer: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
alignItems: 'center',
|
|
|
|
gap: 8,
|
|
|
|
},
|
|
|
|
stepContainer: {
|
|
|
|
gap: 8,
|
|
|
|
marginBottom: 8,
|
|
|
|
},
|
|
|
|
reactLogo: {
|
|
|
|
height: 178,
|
|
|
|
width: 290,
|
|
|
|
bottom: 0,
|
|
|
|
left: 0,
|
|
|
|
position: 'absolute',
|
|
|
|
},
|
|
|
|
});
|