-
[React Native] Issue - Progress bar 에서 Progress 가 채워지지 않는 문제Programing/React 2024. 4. 4. 10:20
react-native-progress 를 이용해 상태 바를 표시하게 되는 경우 아래 그림과 같이 바의 일부분만 채워지는 문제가 발생한다.
<Progress.Bar animated={false} color='pupple' unfilledColor='white' progress={progress} height={10} width={width*0.6}/>
이는 아래와 같이 View Component 로 Progress.Bar Component 를 감싸주면서 간단하게 해결이 가능하다.
<View> <Progress.Bar animated={false} color='pupple' unfilledColor='white' progress={progress} height={10} width={width*0.6}/> </View>
'Programing > React' 카테고리의 다른 글
[React Native] Flatlist 에서 Scrolling 이 되지 않을 경우 (0) 2024.07.02 [React] Debugging Tip (0) 2024.03.14 [React] Combined Directory (0) 2024.02.19 [React Native] Enable/Disable debugging mode in android emulator (0) 2024.02.14 [React Native] Lifecycle of Class Component (0) 2024.02.13