aboutsummaryrefslogtreecommitdiff
path: root/src/components/common/BottomDrawer.tsx
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-04-02 19:01:22 -0400
committerIvan Chen <ivan@tagg.id>2021-04-02 19:01:22 -0400
commit7b061c35948609a1f7f3ef3cef8b5e5be964d4c2 (patch)
tree9b767436ec88912b02ee38d3d99d2e7c7c2287a0 /src/components/common/BottomDrawer.tsx
parent69613af86a9364f72dc2ce5f24722a3eb4b94ed2 (diff)
commented out all the old reanimated stuff, added TODOs for leon
Diffstat (limited to 'src/components/common/BottomDrawer.tsx')
-rw-r--r--src/components/common/BottomDrawer.tsx13
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>