Skip to content

Instantly share code, notes, and snippets.

@mphill
mphill / DateTimePicker.tsx
Last active March 12, 2024 02:24
Tamagui DateTime Picker
import { useEffect, useState } from 'react';
import { Pressable } from 'react-native';
import DateTimePickerModal from "react-native-modal-datetime-picker"; // https://github.com/mmazzarolo/react-native-modal-datetime-picker
import { XStack, YStack, Input, Separator, Spacer } from 'tamagui'
import { Calendar, Clock, Component } from '@tamagui/lucide-icons'
import { ZStack } from '@my/ui/src';
interface datePickerProps {
date?: Date;
type: "date" | "time";