1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Expo × React NativeアプリをAndroidで動かした時、TouchableOpacityのonPressが動かない

Posted at

Expo × React NativeアプリをAndroidで実機確認した時、TouchableOpacityのonPressが動かなかったので共有します。

環境

expo v3.11.7
react-native v36.0.0

解決方法

index.js
import { TouchableOpacity } from 'react-native-gesture-handler';

としていたところを

index.js
import { TouchableOpacity } from 'react-native';

としたら治りました。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?