diff --git a/src/app/components/PickEventDateLocation.js b/src/app/components/PickEventDateLocation.js index dfaac9f..004738f 100644 --- a/src/app/components/PickEventDateLocation.js +++ b/src/app/components/PickEventDateLocation.js @@ -13,6 +13,7 @@ export default function PickEventDateLocation({ time = undefined, navigation = () => {}, location = true, + ...props }) { return ( setTime(value)} time={time} + {...props} /> {/* */} {location && ( diff --git a/src/app/screens/PluviometerSharingDataScreen.js b/src/app/screens/PluviometerSharingDataScreen.js index 27249e1..f3be0c1 100644 --- a/src/app/screens/PluviometerSharingDataScreen.js +++ b/src/app/screens/PluviometerSharingDataScreen.js @@ -115,6 +115,7 @@ function PluviometerSharingDataScreen(props) { setTime={setTime} navigation={props.navigation} location={false} + subtitle={"Defina a data da coleta"} /> Comentário: