react-native-image-gallery-refis360movil
Version:
A React Native image gallery browser with interactive animations
20 lines (19 loc) • 751 B
TypeScript
/// <reference types="react" />
import * as React from 'react';
import { Animated, ImageURISource } from 'react-native';
import { ImageGalleryMeasurements } from './types/image';
export interface Props {
readonly source: ImageURISource;
readonly transitionProgress: Animated.Value;
readonly dismissScrollProgress: Animated.Value;
readonly initialImageMeasurements: ImageGalleryMeasurements;
readonly openImageMeasurements: ImageGalleryMeasurements;
readonly imageWidth: number;
readonly imageHeight: number;
readonly width: number;
readonly height: number;
}
export declare class ImageTransitionView extends React.PureComponent<Props> {
static propTypes: object;
render(): JSX.Element;
}