UNPKG

selected-option-picker

Version:

This React-Native component library is created for the selection of single or multiple item(s) from the list in Android/iOS.

34 lines (32 loc) β€’ 635 B
/* * @𝔸𝕦π•₯𝕙𝕖𝕣: β„™π•’π•Ÿπ•œπ•’π•› π•‚π•¦π•žπ•’π•£ ℙ𝕣𝕒𝕛𝕒𝕑𝕒π•₯π•š */ export const CheckBox = { Type: { SQUARE: "square", CIRCLE: "circle", ICON: "icon", }, }; export const Default = { Preset: { SINGLE: "single", MULTIPLE: "multiple", }, Animation: { SLIDE: "slide", FADE: "fade", NONE: "none", }, Icon: { CHECK: require("./assets/check.png"), UNCHEK: require("./assets/uncheck.png"), }, Value: { EMPTY_TITLE: "No Record(s) Found", PICKER_TITLE: "Select Option", }, Search: { PLACEHOLDER: "Search here", }, };