forked from cemaden-educacao/WPD-MobileApp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
import React from "react";
|
|
import { View } from "react-native";
|
|
|
|
import colors from "../config/colors";
|
|
import { TouchableOpacity } from "react-native";
|
|
import FormDatePicker from "../components/forms/FormDatePicker";
|
|
import FormLocationPicker from "../components/forms/FormLocationPicker";
|
|
|
|
export default function PickEventDateLocation({
|
|
setDate = () => {},
|
|
date = undefined,
|
|
setTime = () => {},
|
|
time = undefined,
|
|
navigation = () => {},
|
|
location = true,
|
|
...props
|
|
}) {
|
|
return (
|
|
<View
|
|
style={{
|
|
flex: 1,
|
|
paddingTop: 36,
|
|
paddingHorizontal: 16,
|
|
paddingBottom:24
|
|
}}
|
|
>
|
|
{/* <View> */}
|
|
<FormDatePicker
|
|
textStyle={{
|
|
borderColor: colors.gray,
|
|
borderWidth: 3,
|
|
}}
|
|
defaultDate={new Date()}
|
|
onDateChange={(value) => setDate(value)}
|
|
date={date}
|
|
onTimeChange={(value) => setTime(value)}
|
|
time={time}
|
|
{...props}
|
|
/>
|
|
{/* </View> */}
|
|
{location && (
|
|
<TouchableOpacity onPress={() => navigation.navigate("FormMap")}>
|
|
<FormLocationPicker />
|
|
</TouchableOpacity>
|
|
)}
|
|
</View>
|
|
);
|
|
}
|