34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
import * as React from 'react';
|
|
import { useState } from 'react';
|
|
import { Alert, Button, Image, StyleSheet, Dimensions, SafeAreaView, ScrollView, TouchableOpacity, ImageBackground, Modal, Pressable } from 'react-native';
|
|
import { LinearGradient } from 'expo-linear-gradient';
|
|
import { Ionicons, FontAwesome } from '@expo/vector-icons';
|
|
import EditScreenInfo from '../EditScreenInfo';
|
|
import { Text, View } from '../Themed';
|
|
import { TextInput } from 'react-native-gesture-handler';
|
|
import { useNavigation } from '@react-navigation/native';
|
|
import Swiper from 'react-native-swiper';
|
|
import { Picker } from '@react-native-picker/picker';
|
|
import { RadioButton, Checkbox } from 'react-native-paper';
|
|
|
|
|
|
const winWidth = Dimensions.get('window').width; //full width
|
|
const winHeight = Dimensions.get('window').height; //full height
|
|
|
|
const ProductItemSt = () => {
|
|
return (
|
|
<View></View>
|
|
)
|
|
}
|
|
|
|
|
|
export { };
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
backgroundColor: '#f2f2f2'
|
|
},
|
|
}) |