@hedverse-ui/native-circular-progress
Version:
Animated circular progress component for React Native applications with customizable properties
18 lines (17 loc) • 577 B
TypeScript
/// <reference types="react" />
import { StyleProp, TextStyle } from "react-native";
export interface CircularProgressProps {
value: number;
radius?: number;
duration?: number;
strokeWidth?: number;
showLabel?: boolean;
activeStrokeColor?: string;
inActiveStrokeColor?: string;
inActiveStrokeOpacity?: number;
progressValueColor?: string;
progressValueStyle?: StyleProp<TextStyle>;
valueSuffix?: string;
}
declare function CircularProgress(props: CircularProgressProps): import("react").JSX.Element;
export default CircularProgress;