npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

lonare-react-native-date-time-picker

v1.1.2

Published

This npm package provides a simple and customizable date and time picker component using React Native Modal. It is designed to integrate seamlessly with both Expo and React Native CLI projects, allowing you to easily add date and time selection functional

Downloads

24

Readme

Date Picker and Time Picker Components for React Native

This repository provides reusable Date Picker and Time Picker components for React Native projects. These components are designed to be easy to integrate and customise according to your project's requirements.

If you are using date time picker and your app is crashing on test flight than there is a possibility that date-time-picker or any other picker package is causing it.

To resolve this issue i created this new and enganced version of date time picker without the hassle of crashing the apps.

Screenshots

Mobile Date Picker Mobile Time Picker iPad Date Picker iPad Time Picker

Key Features

  • Customizable UI: Easily style the date and time picker components to match your app's design.
  • Simple Integration: Add date and time picking functionality to your app with minimal setup.
  • React Native Modal: Utilizes the built-in Modal component from React Native for cross-platform compatibility.
  • Support for Expo and React Native CLI: Works smoothly with both Expo managed workflow and React Native CLI.

Installation

To use these components in your React Native project, follow these steps:

  1. Install Dependencies

    Make sure you have react-native installed in your project. If not, you can install them using npm or yarn:

    npm install lonare-react-native-date-time-picker
    # or
    yarn add lonare-react-native-date-time-picker
  2. Install the Date Picker and Time Picker Components

    You can install these components directly from this GitHub repository also:

    npm install https://github.com/harshalone/react-native-date-time-picker.git
    # or
    yarn add https://github.com/harshalone/react-native-date-time-picker.git

Usage

Here's how you can use the Date Picker and Time Picker components in your React Native project:

import React, { useState } from 'react';
import { View, Text } from 'react-native';
import { DateInput, TimeInput } from 'lonare-react-native-date-time-picker';   

function App() {

  const [selectedDate, setSelectedDate] = useState('');
  const [selectedTime, setSelectedTime] = useState('');

  return (
    <View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
      <DateInput
        title="Select Date"
        setDate={setSelectedDate}
        wrapperClass="my-1" // Optional: Custom CSS classes
        required={true} // Optional: Whether the field is required
        modalWrapperClass={{ marginTop: 50 } } 
      />
      <Text style={{ marginVertical: 10 }}>Selected Date: {selectedDate}</Text>

      <TimeInput
        title="Select Time"
        setTime={setSelectedTime}
        wrapperClass="my-1" // Optional: Custom CSS classes
        required={true} // Optional: Whether the field is required
        modalWrapperClass={{ marginTop: 50 } } 
      />
      <Text>Selected Time: {selectedTime}</Text>
    </View>
  );
}

export default App;

Components Props

DateInput

  • title: Title of the input field (default: "Title of the input").
  • setDate: Function to handle selected date (required).
  • wrapperClass: Optional additional CSS classes for wrapper.
  • required: Whether the field is required (default: false).

TimeInput

  • title: Title of the input field (default: "Title of the input").
  • setTime: Function to handle selected time (required).
  • wrapperClass: Optional additional CSS classes for wrapper.
  • required: Whether the field is required (default: false).

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgements

Special thanks to contributors and open source projects used in this repository.