Skip to content

Commit

Permalink
fix: Fixed ProgressBar bar color not showing up
Browse files Browse the repository at this point in the history
  • Loading branch information
DogusErdem committed Dec 29, 2023
1 parent daf9fbf commit f873e50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ProgressBar/ProgressBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ const ProgressBar: FCCWD<ProgressBarProps> = ({ theme, progress = 0, barColor, p
export default applyDefaults(ProgressBar);

export const Style = StyleSheet.create({
container: { flex: 1, backgroundColor: 'transparent', height: 2, width: '100%', overflow: 'visible', justifyContent: 'center' },
container: { backgroundColor: 'transparent', height: 2, width: '100%', overflow: 'visible', justifyContent: 'center' },
progressStyle: { borderRadius: 14, position: 'absolute', height: 4 },
});

0 comments on commit f873e50

Please sign in to comment.