🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

@huyhpham/react-native-calendario

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@huyhpham/react-native-calendario

React Native Calendar

unpublished
latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

React Native Lunar Calendar 📆

This repo fork from [React Native Calendar]{https://www.npmjs.com/package/react-native-calendario}

Installation

npm install react-native-lunar-calendario --save

Using yarn

yarn add react-native-lunar-calendario

Usage

import { Calendar } from 'react-native-lunar-calendario';
<Calendar
  onChange={(range) => console.log(range)}
  range={[new Date(2018, 3, 30), new Date(2018, 4, 5)]}
  minDate={new Date(2018, 3, 20)}
  theme={{
    activeDayColor: {},
    monthTitleTextStyle: {
      color: '#6d95da',
      fontWeight: '300',
      fontSize: 16,
    },
    emptyMonthContainerStyle: {},
    emptyMonthTextStyle: {
      fontWeight: '200',
    },
    weekColumnsContainerStyle: {},
    weekColumnStyle: {
      paddingVertical: 10,
    },
    weekColumnTextStyle: {
      color: '#b6c1cd',
      fontSize: 13,
    },
    nonTouchableDayContainerStyle: {},
    nonTouchableDayTextStyle: {},
    startDateContainerStyle: {},
    endDateContainerStyle: {},
    dayContainerStyle: {},
    dayTextStyle: {
      color: '#2d4150',
      fontWeight: '200',
      fontSize: 15,
    },
    dayOutOfRangeContainerStyle: {},
    dayOutOfRangeTextStyle: {},
    todayContainerStyle: {},
    todayTextStyle: {
      color: '#6d95da',
    },
    activeDayContainerStyle: {
      backgroundColor: '#6d95da',
    },
    activeDayTextStyle: {
      color: 'white',
    },
    nonTouchableLastMonthDayTextStyle: {},
  }}
/>

API

PropDescriptionRequired?DefaultType
onChange (deprecated)Callback called when a day is pressed.noFunction
onPressCallback called when a day is pressed.yes(Date) => void
minDateMinimum date that can be selected.nonullDate
maxDateMaximum date that can be selected.nonullDate
rangeSelected range dateyesnullDate
themeCalendar StyleSheetnonullThemeType
localeCalendar languagees, en, fr, br'en'LocaleType
dayNamesArray of day namesno[]string[]
monthNamesArray of names of each mono[]string[]
showWeekdaysShow Week columnsnotrueboolean
showMonthTitleShow Month titlenotrueboolean
initialListSizeFlatList initialNumToRenderno2number
startingMonthFirst month to rendernocurrent month'YYYY-MM-DD'
numberOfMonthsNumber of months to renderno12number
disableRangeTurn off range date selectionnofalseboolean
firstDayMondayMonday as first day of the weeknofalseboolean
monthHeightChange Month row heightno370number
markedDaysMulti-dot support on Day componentnoundefinedMarkedDays
disabledDaysDisabled daysnonull{[string]: any }
renderDayContentRender custom Day contentnonullFunction
renderAllMonthsUse this for web, render all monthsnonullboolean
viewableItemsChangedhandleViewableItemsChange callbacknonullFunction
disableOffsetDaysRemove offset Days.nofalseboolean

License

MIT

Keywords

react-native

FAQs

Package last updated on 11 Jun 2023

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