NepaliDateRangePickerWithEnglishDate
NNepaliDateRangePickerWithEnglishDate let people select a range of Nepali dates and can be embedded into dialogs. See NepaliDatePickerDialog
Nepali date picker lets you pick Nepali dates via a calendar UI which displays both Nepali and English dates.
Parameters
state of the Nepali date range picker. See rememberNepaliDateRangePickerState.
the Modifier to be applied to this Nepali date range picker.
the locale NepaliDateLocale for the english date
the title to be displayed in the Nepali date range picker
the headline to be displayed in the Nepali date range picker
the boolean to let user toggle between Date Picker and Date Input
the control to either show or hide TODAY button for navigating to today's date. It is also affected by showYearPickerAndMonthNavigation.
the control to either show months vertically or horizontally. Note: When set to true (vertical display), the date picker uses vertical scrolling. This can lead to runtime errors if placed within a composable that also uses vertical scrolling, such as a Column with vertical scroll or a LazyColumn. Ensure your layout accommodates the vertical scrolling behavior to avoid these errors.
the control to either show or hide YearPicker button and MonthNavigation buttons. showTodayButton is affected by this.
NepaliDatePickerColors that will be used to resolve the colors used for this date picker in different states. See NepaliDatePickerDefaults.colors.
Example usage:
val defaultNepaliDateRangePickerState = rememberNepaliDateRangePickerState()
NepaliDateRangePickerWithEnglishDate(defaultNepaliDateRangePickerState)