以下のコードでボタンイベントを取得したいと考えているのですが、consoleのログ画出力されません。
元のコードはReactNative入門② Hello Worldを出力するを参考に使わせていただきました。
JavaScript
1import React, { Component } from 'react'; 2import { Text, Button, View} from 'react-native'; 3 4 5export default class HelloWorldApp extends Component { 6 7 8 onPressButton(){ 9 console.log('hogehoge'); 10 } 11 12 render() { 13 return ( 14 <View> 15 <Text>Hello world!</Text> 16 <Button 17 onPres={this.onPressButton} 18 title='counter' 19 /> 20 </View> 21 ); 22 } 23} 24
ボタンのクリックイベントを処理する場合別途何か必要なのでしょうか?

回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。