diff options
Diffstat (limited to 'src/components/common/BottomDrawer.tsx')
-rw-r--r-- | src/components/common/BottomDrawer.tsx | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/components/common/BottomDrawer.tsx b/src/components/common/BottomDrawer.tsx index bef9434a..173823b1 100644 --- a/src/components/common/BottomDrawer.tsx +++ b/src/components/common/BottomDrawer.tsx @@ -78,12 +78,13 @@ const BottomDrawer: React.FC<BottomDrawerProps> = (props) => { <Animated.View style={[ styles.backgroundView, - { - backgroundColor: Animated.interpolateColors(bgAlpha, { - inputRange: [0, 1], - outputColorRange: ['rgba(0,0,0,0.3)', 'rgba(0,0,0,0)'], - }), - }, + // TODO: (Leon) use reanimated v2 + // { + // backgroundColor: Animated.interpolateColors(bgAlpha, { + // inputRange: [0, 1], + // outputColorRange: ['rgba(0,0,0,0.3)', 'rgba(0,0,0,0)'], + // }), + // }, ]} /> </TouchableWithoutFeedback> |