import { StyleProp, ViewStyle, TextStyle } from 'react-native'; /** * DbProgress 组件属性 */ export interface DbProgressProps { /** 进度值 (0-100) */ value: number; /** 进度条颜色,默认 #FF3B30 */ color?: string; /** 轨道背景颜色,默认 #F3F4F6 */ trackColor?: string; /** 进度条高度,默认 8 */ height?: number; /** 进度条圆角,默认等于高度的一半 */ borderRadius?: number; /** 是否显示百分比文本 */ showPercent?: boolean; /** 百分比文本位置 */ percentPosition?: 'inside' | 'right' | 'follow'; /** 百分比文字颜色 */ percentColor?: string; /** 百分比文字大小 */ percentFontSize?: number; /** 自定义渲染进度位置的内容(如图标) */ renderIndicator?: (value: number) => React.ReactNode; /** 是否有动画效果 */ animated?: boolean; /** 动画持续时间(毫秒) */ animationDuration?: number; /** 自定义容器样式 */ style?: StyleProp; /** 自定义进度条样式 */ progressStyle?: StyleProp; /** 自定义轨道样式 */ trackStyle?: StyleProp; /** 自定义百分比文字样式 */ percentStyle?: StyleProp; }