1.0.1 • Published 1 year ago

@sabroso/react-native-date-range-picker v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

react-native-date-ranges

Reference

This component is a clone of react-native-date-range but adding some new props like: textStartDate,textEndDate and alertMessageText.

Getting started

$ npm install @sabroso/react-native-date-range-picker --save

Usage

import DatePicker from '@sabroso/react-native-date-range-picker';

//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, 2018 → Jul 10, 2018'}
	mode={'range'}
/>

//single picker
<DatePicker
	style={ { width: 350, height: 45 } } // default width will be equal to placeholder text width
	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
                monthPickerText: {}, //focused month picker text style
                datePickerText: {}, //calendar dates text style
                dayNameText: {} //day of week title text style (M, T, W, T, F, S, S)
	} } // optional 
	centerAlign // optional text will align center or not
	allowFontScaling = {false} // optional
	placeholder={'Apr 27, 2018'}
	selectedBgColor="black"
	selectedTextColor="blue"
        calendarBgColor="black"
/>

Props

PropTypeDescription
textStartDateStringoptional.
textEndDateStringoptional.
alertMessageTextStringoptional.
cancelButtonTextStringoptional.
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))
calendarBgColorStringOptional. custom the calendar view background color e.g {"black"}
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
customButtoncomponentOptional (total custom your button component)e.g.(<Button></Button>)
blockBeforeBooloptional. default is false, decide blocke date before today or not
markTextStringoptional. default is "選擇日期", you can custom this prop to label text with ur own
buttonTextStringoptional. you can modify default button't label with your own
blockAfterBooloptional. default is false, decide blocke date after today or not
dateSplitterStringoptional. default is '->', decide custom dateSplitter with String

....