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
JavaScript
/*
* @πΈπ¦π₯πππ£: βπππππ ππ¦πππ£ βπ£ππππ‘ππ₯π
*/
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",
},
};