UNPKG

nativescript-custom-bottomsheet

Version:

Nativescript Custom Bottomsheet is a plugin that enable the show a custom beautiful actionsheet/bottomsheet.

12 lines (11 loc) 264 B
export interface CBSheetOption { title: string; icon: string; items: Array<any>; onItemTap?: (index: any, item: CBSheetItem) => void; cancelButtonText?: string; } export interface CBSheetItem { title: string; icon: string; }