Socket
Socket
Sign inDemoInstall

react-native-date-ranges

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-date-ranges

## Getting started


Version published
Weekly downloads
604
increased by39.17%
Maintainers
1
Weekly downloads
 
Created
Source

react-native-date-ranges

Getting started

$ npm install react-native-date-ranges --save

alt text

Usage

import DatePicker from 'react-native-date-ranges';

//range picker
<DatePicker
	style={ { width: 350, height: 45 } }
	customStyles = { {
		placeholderText:{ fontSize:20 } // placeHolder style
		headerStyle : {  },			// title container style
		headerMarkTitle : { }, // title mark style 
		headerDateTitle: { }, // title Date style
		contentInput: {}, //content text container style
		contentText: {}, //after selected text Style
	} } // optional 
	centerAlign // optional text will align center or not
	allowFontScaling = {false} // optional
	placeholder={'Apr 27, 2018Jul 10, 2018'}
	mode={'range'}
/>

//single picker
<DatePicker
	style={ { width: 350, height: 45 } }
	customStyles = { {
		placeholderText:{ fontSize:20 }, // placeHolder style
		headerStyle : {  },			// title container style
		headerMarkTitle : { }, // title mark style 
		headerDateTitle: { }, // title Date style
		contentInput: {}, //content text container style
		contentText: {}, //after selected text Style
	} } // optional 
	centerAlign // optional text will align center or not
	allowFontScaling = {false} // optional
	placeholder={'Apr 27, 2018'}
	selectedBgColor="black"
	selectedTextColor="blue"
/>

Props

PropTypeDescription
placeholderStringoptional.
customStylesObjectoptional. customize style e.g.({ placeholderText:{}, headerStyle:{} ... })
styleObjectOptional. date picker's style
onConfirmFunctionOptional. call function after click button, that would return a date object {startDate:'', endDate:''} e.g( value=>console.log(value))
selectedBgColorStringOptional. custom your selected date background color e.g {"black"}
selectedTextColorStringOptional. custom your selected date text color e.g {"black"}
ButtonStyleObjectOptional. custom your save button container style
ButtonTextStyleObjectOptional. custom your save button Text style
returnFormatStringOptional. custom your datetime format e.g.('YYYY/MM/DD') at onConfirm
headFormatStringOptional. custom your datetime format showing at headBlock e.g.('YYYY/MM/DD')
outFormatStringOptional. custom your datetime format showing at outline touchable filed e.g.('YYYY/MM/DD')
modeStringone of ['range', 'single'] , default as single
....

Keywords

FAQs

Package last updated on 30 May 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc