sarbagyastha / nepali_date_picker

Material Style Date Picker with Bikram Sambat(Nepali) Calendar Support. Supports both Android and ios.
BSD 3-Clause "New" or "Revised" License
40 stars 30 forks source link

Fix: Changed RegExp in input validation #12

Closed Amritacharya closed 3 years ago

Amritacharya commented 3 years ago

RegExp before would not let user to type dates including 10 or 20. eg: 2078/01/10 and 2078/01/20. Changing the RegExp as (0[1-9]|1[0-9]|2[0-9]|3[0-2]) for day field will work fine.

sarbagyastha commented 3 years ago

Thank you for your contribution.