-
Notifications
You must be signed in to change notification settings - Fork 198
Open
Labels
iOSAffects apple devices using iOSAffects apple devices using iOS
Description
Requirements:
Please go through this checklist before opening a new issue
- Review the documentation
- Search for existing issues in: ViroCommunity/viro
- Use the latest ViroReact release
Environment
- Development OS: Mac
- Device OS & Version: iOS 17.2.1
- Version: "@viro-community/react-viro": "^2.41.0" & "react-native": "0.73.5"
- Device(s): iPhone 11
Description
I am learning to use Viro and I am trying to add a click event to a ViroText component. I have tried to add the onClick prop to the ViroText component but it does not seem to work.
Error is Exception thrown while executing UI block: -[VRTNodeContainer setOnClick:]: unrecognized selector sent to instance 0x12f310a50
after setting onClick prop to ViroText component.
I am curious to know if there is a way to add a click event to a ViroText component or any other Viro component. Prop onPinch is working fine but onClick is not working.
Reproducible Demo
Here is the codes that i would like to do onClick event.
import {
ViroARScene,
ViroARSceneNavigator,
ViroCamera,
ViroText,
ViroTrackingReason,
ViroTrackingStateConstants,
} from '@viro-community/react-viro';
import React, {useState} from 'react';
import {StyleSheet} from 'react-native';
const HelloWorldSceneAR = () => {
const [text, setText] = useState('Initializing AR...');
function onInitialized(state: any, reason: ViroTrackingReason) {
console.log('onInitialized', state, reason);
if (state === ViroTrackingStateConstants.TRACKING_NORMAL) {
setText('Hello World!');
} else if (state === ViroTrackingStateConstants.TRACKING_UNAVAILABLE) {
// Handle loss of tracking
}
}
const handleClick = () => {
console.log('clicked1');
};
return (
<ViroARScene onTrackingUpdated={onInitialized}>
<ViroCamera position={[0, 0, 0]} active={true} />
<ViroText
style={styles.helloWorldTextStyle}
text={text}
scale={[0.5, 0.5, 0.2]}
position={[0, 0, -2]}
onClick={handleClick}
/>
</ViroARScene>
);
};
export default () => {
return (
<ViroARSceneNavigator
autofocus={true}
initialScene={{
scene: HelloWorldSceneAR,
}}
style={styles.f1}
/>
);
};
var styles = StyleSheet.create({
f1: {flex: 1},
helloWorldTextStyle: {
fontFamily: 'Arial',
fontSize: 30,
color: '#ffffff',
textAlignVertical: 'center',
textAlign: 'center',
},
});
Metadata
Metadata
Assignees
Labels
iOSAffects apple devices using iOSAffects apple devices using iOS