mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 21:01:34 +08:00
11 lines
500 B
TypeScript
11 lines
500 B
TypeScript
import { ActivityIndicator as ActivityIndicatorDefinition } from "ui/activity-indicator";
|
|
import { View, Property, booleanConverter } from "ui/core/view";
|
|
|
|
export * from "ui/core/view";
|
|
|
|
export class ActivityIndicatorBase extends View implements ActivityIndicatorDefinition {
|
|
public busy: boolean;
|
|
}
|
|
|
|
export const busyProperty = new Property<ActivityIndicatorBase, boolean>({ name: "busy", defaultValue: false, valueConverter: booleanConverter });
|
|
busyProperty.register(ActivityIndicatorBase); |