Skip to content

Commit

Permalink
Merge pull request #111 from Pironeer-APP/feature/108
Browse files Browse the repository at this point in the history
[FIX/108] 홈 화면 과제 프로그레스바 머지 오류
  • Loading branch information
mingdodev authored Oct 4, 2023
2 parents 47e084b + f207b6f commit 845ee9d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/screens/HomeScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,10 +175,10 @@ const HomeScreen = ({navigation}) => {
/>
<RightArrowBtn />
</RowView>
<StyledText content={'Arsha 클론코딩하기'} fontSize={20} />
<StyledText content={curTitle} fontSize={20} />
<RowView style={{marginTop: 10}}>
<ProgressBar status={'30%'} />
<StyledText content={'18:38:43'} fontSize={16} />
<ProgressBar status={`${homeProgress ? homeProgress : 100}%`} />
<StyledText content={`${hour}:${min}:${sec}`} fontSize={16} />
</RowView>
</TouchableOpacity>
</Box>
Expand Down

0 comments on commit 845ee9d

Please sign in to comment.