Drop react-native-progress fork (#11312)

This commit is contained in:
Samuel Newman
2026-07-28 19:47:56 +03:00
committed by GitHub
parent 8263175a03
commit 0751420a29
6 changed files with 14 additions and 17 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
import {View} from 'react-native'
import * as Progress from 'react-native-progress'
import {Circle as ProgressCircle} from 'react-native-progress'
import {atoms as a, useTheme} from '#/alf'
import {AnimatedCheck} from '../anim/AnimatedCheck'
@@ -25,7 +25,7 @@ export function ProgressGuideTask({
{current === total ? (
<AnimatedCheck playOnMount fill={t.palette.primary_500} width={20} />
) : (
<Progress.Circle
<ProgressCircle
progress={current / total}
color={t.palette.primary_400}
size={20}