mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
25 lines
680 B
TypeScript
25 lines
680 B
TypeScript
/**
|
|
* Contains the TabStrip class, which represents a tab strip for tab navigation.
|
|
* @module "ui/tab-navigation/tab-strip"
|
|
*/ /** */
|
|
|
|
import { ViewBase, Property } from "../../core/view";
|
|
import { TabStripItem } from "../tab-strip-item";
|
|
|
|
/**
|
|
* Represents a tab strip.
|
|
*/
|
|
export class TabStrip extends ViewBase {
|
|
/**
|
|
* Gets or sets the items of the tab strip.
|
|
*/
|
|
items: Array<TabStripItem>;
|
|
|
|
/**
|
|
* Gets or sets the icon rendering mode on iOS
|
|
*/
|
|
iosIconRenderingMode: "automatic" | "alwaysOriginal" | "alwaysTemplate";
|
|
}
|
|
|
|
export const iosIconRenderingModeProperty: Property<TabStrip, "automatic" | "alwaysOriginal" | "alwaysTemplate">;
|