1 | import { ScrollViewBase } from './scroll-view-common';
|
2 | export * from './scroll-view-common';
|
3 | export declare class ScrollView extends ScrollViewBase {
|
4 | nativeViewProtected: org.nativescript.widgets.VerticalScrollView | org.nativescript.widgets.HorizontalScrollView;
|
5 | private _androidViewId;
|
6 | private handler;
|
7 | private scrollChangeHandler;
|
8 | get horizontalOffset(): number;
|
9 | get verticalOffset(): number;
|
10 | get scrollableWidth(): number;
|
11 | get scrollableHeight(): number;
|
12 | scrollToVerticalOffset(value: number, animated: boolean): void;
|
13 | scrollToHorizontalOffset(value: number, animated: boolean): void;
|
14 | createNativeView(): org.nativescript.widgets.VerticalScrollView | org.nativescript.widgets.HorizontalScrollView;
|
15 | initNativeView(): void;
|
16 | _onOrientationChanged(): void;
|
17 | protected attachNative(): void;
|
18 | private _lastScrollX;
|
19 | private _lastScrollY;
|
20 | private _onScrollChanged;
|
21 | protected detachNative(): void;
|
22 | }
|