小编Arn*_*own的帖子

如何为特定时间间隔设置进度条 - React Native(应支持 IOS 和 Android)

在我的应用程序中,我需要显示进度栏,该进度应从 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
推荐指数
1
解决办法
5222
查看次数

标签 统计

react-native ×1