|
|
@@ -219,6 +219,19 @@ export const AddVisitModal: React.FC<AddVisitModalProps> = ({
|
|
|
style={[StyleSheet.absoluteFill, { opacity: activeTab === 'exact' ? 1 : 0 }]}
|
|
|
pointerEvents={activeTab === 'exact' ? 'auto' : 'none'}
|
|
|
>
|
|
|
+ {startDate && endDate && (
|
|
|
+ <Text
|
|
|
+ style={{
|
|
|
+ color: Colors.TEXT_GRAY,
|
|
|
+ fontSize: 12,
|
|
|
+ textAlign: 'center',
|
|
|
+ fontWeight: '500',
|
|
|
+ marginBottom: 8
|
|
|
+ }}
|
|
|
+ >
|
|
|
+ Double-tap to mark the first day of your visit.
|
|
|
+ </Text>
|
|
|
+ )}
|
|
|
<DateTimePicker
|
|
|
mode="range"
|
|
|
startDate={startDate}
|