Xavier Yin
Xavier Yin
1. 修复 `percent` 小于 50 时,在安卓上进度条显示不正确的问题。 2. 修复 `textStyle` 在应用于 `Text` 时的类型错误。 3. 新增 `rotate` prop 用于自定义进度条的起始位置。
Env: * Android: `[email protected]`, `[email protected]`. * iOS: `[email protected]`, `[email protected]`. * [email protected] Wrong Example on Android:  Normal Example on iOS:  When percentage is less than 50, the circle is...
官方文档和示例关于 OptGroup 的说明太少了,我发现 OptGroup 是故意被限制了嵌套使用,即 Select 只能支持一级分组。 在 src/utils/valueUtils.ts 第 54 行: ``` function dig(list: OptionType[], isGroupOption: boolean) { list.forEach((data) => { const label = data[fieldLabel]; if (isGroupOption || !(fieldOptions...