nativescript-gif
Version:
NativeScript plugin to use .gifs
21 lines • 539 B
JavaScript
import { Property, View } from '@nativescript/core';
export class GifCommon extends View {
constructor() {
super();
}
}
export const srcProperty = new Property({
name: 'src',
defaultValue: '',
});
srcProperty.register(GifCommon);
export const headersProperty = new Property({
name: 'headers',
});
headersProperty.register(GifCommon);
export const isLoadingProperty = new Property({
name: 'isLoading',
defaultValue: false,
});
isLoadingProperty.register(GifCommon);
//# sourceMappingURL=gif.common.js.map