From 31d3c05c9b6bc62cec904ce46509cc63e71f32a9 Mon Sep 17 00:00:00 2001 From: Baptiste Dupuch Date: Wed, 3 Jun 2020 22:01:12 +0200 Subject: [PATCH] Added TouchableOpacity comp This component is nice to have touchable behaviors wrapping other components --- src/reagent/react_native.cljs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/reagent/react_native.cljs b/src/reagent/react_native.cljs index cf9e5a9..752940f 100644 --- a/src/reagent/react_native.cljs +++ b/src/reagent/react_native.cljs @@ -16,6 +16,7 @@ (def text (r/adapt-react-class rn/Text)) (def text-input (r/adapt-react-class rn/TextInput)) (def touchable-highlight (r/adapt-react-class rn/TouchableHighlight)) +(def touchable-opacity (r/adapt-react-class rn/TouchableOpacity)) (def touchable-without-feedback (r/adapt-react-class rn/TouchableWithoutFeedback)) (def view (r/adapt-react-class rn/View)) (def virtualized-list (r/adapt-react-class rn/VirtualizedList))