@knotes/nativescript-keyboard-toolbar
Version:
NativeScript Keyboard Toolbar plugin
26 lines (25 loc) • 1.3 kB
TypeScript
import { ContentView } from "@nativescript/core/ui/content-view";
import { View } from "@nativescript/core/ui/core/view";
import { Property } from "@nativescript/core/ui/core/properties";
import { AddChildFromBuilder } from "@nativescript/core/ui/core/view";
import { VerticalAlignment } from "@nativescript/core/ui/styling/style-properties";
export declare const forIdProperty: any;
export declare const showWhenKeyboardHiddenProperty: Property<ToolbarBase, boolean>;
export declare const showAtBottomWhenKeyboardHiddenProperty: Property<ToolbarBase, boolean>;
export declare abstract class ToolbarBase extends ContentView implements AddChildFromBuilder {
content: View;
verticalAlignment: VerticalAlignment;
private static DEBUG;
protected hasFocus: boolean;
protected forId: string;
protected showWhenKeyboardHidden: boolean;
protected showAtBottomWhenKeyboardHidden: boolean;
protected abstract _loaded(): void;
protected abstract _unloaded(): void;
protected _layout(left: number, top: number, right: number, bottom: number): void;
protected log(what: string): void;
onLoaded(): void;
onUnloaded(): void;
onLayout(left: number, top: number, right: number, bottom: number): void;
_addChildFromBuilder(name: string, value: View): void;
}