import React from 'react'; import {StyleSheet, View, ScrollView, useWindowDimensions} from 'react-native'; import ProfileModification from '../components/ProfileModification'; import ValidateButton from '../components/ValidateButton'; import TopBar from '../components/TopBar'; import { LinearGradient } from 'expo-linear-gradient'; import { SafeAreaProvider } from 'react-native-safe-area-context'; export default function ModifyProfile(props) { const all = [{value: "Mussels"}, {value: "Skimmed Milk"}, {value: "Nuts"}] const die = [{value: "Dairy free"}, {value: "Gluten free"}, {value: "Porkless"}, {value: "Vegan"}, {value: "Vegetarian"}, {value: "Pescatarian"}] return ( ); } const styles = StyleSheet.create({ container: { height: "100%", width: "100%", flex: 1, backgroundColor: '#3F3C42', alignItems: 'center', justifyContent: 'center', }, linearGradient: { height: "100%", width: "100%", flex: 1, padding: "2%", paddingTop: 0, }, });