在我的应用程序中,我需要显示进度栏,该进度应从 0 分钟增加到 1 分钟或给定最大时间。
尝试过 - 一个
我尝试了“react-native-paper”中的进度条
<ProgressBar progress={getTime} color={COLORS.grey} />
Run Code Online (Sandbox Code Playgroud)
尝试过 - 两个
<Animated.View
style={[
{
width: '100%',
height: 5,
borderRadius: 1,
backgroundColor: COLORS.yellow,
},
{width: 25 + '%'},
]}
/>
Run Code Online (Sandbox Code Playgroud)
但无法获得输出
react-native ×1