nativescript-bubble-navigation
Version:
Nativescript plugin for Android & iOS that create beautiful navigation tabs
15 lines (14 loc) • 653 B
TypeScript
/// <reference path="platforms/android/bubble-navigation.android.d.ts" />
import { BubbleNavigationBase, BubbleNavigationItemBase } from './bubble-navigation.common';
export declare class BubbleNavigation extends BubbleNavigationBase {
nativeView: any;
private viewID;
readonly android: any;
createNativeView(): Object;
initNativeView(): void;
bindTabs(tabs: BubbleNavigationItem[]): void;
protected selectTabNative(index: number): void;
}
export declare class BubbleNavigationItem extends BubbleNavigationItemBase {
constructor(title: string, icon: string, colorActive?: string, colorInactive?: string);
}