diff options
author | Shravya Ramesh <shravs1208@gmail.com> | 2021-07-29 02:17:41 -0700 |
---|---|---|
committer | Shravya Ramesh <shravs1208@gmail.com> | 2021-07-29 02:17:41 -0700 |
commit | 4c0ba1d16005271da9d675d087f18dafe9891366 (patch) | |
tree | a0d37d7d47b282c73f38cf5d82572f875d253553 /src/components/common/GradientProgressBar.tsx | |
parent | f62f18884b2b1388e9dda4b2a4e01ad6136627c6 (diff) |
Add extra props to progress bar, Update usage
Diffstat (limited to 'src/components/common/GradientProgressBar.tsx')
-rw-r--r-- | src/components/common/GradientProgressBar.tsx | 25 |
1 files changed, 17 insertions, 8 deletions
diff --git a/src/components/common/GradientProgressBar.tsx b/src/components/common/GradientProgressBar.tsx index fc62bd3c..066295d0 100644 --- a/src/components/common/GradientProgressBar.tsx +++ b/src/components/common/GradientProgressBar.tsx @@ -2,20 +2,21 @@ import React, {FC} from 'react'; import {StyleSheet, ViewProps, ViewStyle} from 'react-native'; import LinearGradient from 'react-native-linear-gradient'; import Animated, {useAnimatedStyle} from 'react-native-reanimated'; -import { - TAGG_LIGHT_BLUE_2, - TAGG_LIGHT_BLUE_3, - TAGG_PURPLE, -} from '../../constants'; import {normalize} from '../../utils'; interface GradientProgressBarProps extends ViewProps { progress: Animated.SharedValue<number>; + toColor: string; + fromColor: string; + unfilledColor: string; } const GradientProgressBar: FC<GradientProgressBarProps> = ({ style, progress, + toColor, + fromColor, + unfilledColor, }) => { const animatedProgressStyle = useAnimatedStyle<ViewStyle>(() => ({ width: `${(1 - progress.value) * 100}%`, @@ -24,8 +25,16 @@ const GradientProgressBar: FC<GradientProgressBarProps> = ({ <LinearGradient style={[styles.bar, style]} useAngle={true} - colors={[TAGG_PURPLE, TAGG_LIGHT_BLUE_2]}> - <Animated.View style={[styles.blank, animatedProgressStyle]} /> + colors={[fromColor, toColor]}> + <Animated.View + style={[ + styles.blank, + animatedProgressStyle, + { + backgroundColor: unfilledColor, + }, + ]} + /> </LinearGradient> ); }; @@ -36,12 +45,12 @@ const styles = StyleSheet.create({ bar: { height: normalize(10), borderRadius: 6.5, + opacity: 1, }, blank: { alignSelf: 'flex-end', height: normalize(10), width: '80%', - backgroundColor: TAGG_LIGHT_BLUE_3, }, }); |