From f873e50fc614a949cbc0e0acbc10dc659517d58e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dog=CC=86us=CC=A7=20Erdem?= <48646654+DogusErdem@users.noreply.github.com> Date: Fri, 29 Dec 2023 17:49:24 +0300 Subject: [PATCH] fix: Fixed ProgressBar bar color not showing up --- src/components/ProgressBar/ProgressBar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ProgressBar/ProgressBar.tsx b/src/components/ProgressBar/ProgressBar.tsx index c853ec0..65478cc 100644 --- a/src/components/ProgressBar/ProgressBar.tsx +++ b/src/components/ProgressBar/ProgressBar.tsx @@ -40,6 +40,6 @@ const ProgressBar: FCCWD = ({ 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 }, });