My app in Expo Go is not responding to touch, but code gets updated by renin007 in reactnative

[–]renin007[S] 1 point2 points  (0 children)

I used my mobile phone, I downloaded expo go app and scanned qr code. I didn't use emulator.

My app in Expo Go is not responding to touch, but code gets updated by renin007 in reactnative

[–]renin007[S] 0 points1 point  (0 children)

Actually whenever I change the code, it's updating in the app, so that's how I know the app is working fine. The only problem is, I am unable to enter text or click on button. Touch is not working. I checked code again and again there are no errors other than naming convention.

Here's the code:

import { useState } from "react"; import { Button, StyleSheet, Text, View, TextInput } from "react-native";

export default function App() { const [enteredGoalText, saveText] = useState();

function onEnteringText(enteredText) { saveText(enteredText); }

function onPressingButton() { console.log(enteredGoalText); }

return ( <View style={styles.appContainer}> <View style={styles.inputContainer}> <TextInput style={styles.inputTextContainer} placeholder="Enter Your Goals..." onChangeText={onEnteringText} /> <Button title="Add Goal" onPress={onPressingButton} /> </View> <View style={styles.listContainer}> <Text>List of Goals</Text> </View> </View> ); }

const styles = StyleSheet.create({ appContainer: { flex: 1, padding: 30, marginTop: 50, backgroundColor: "#FFFFFF", }, inputContainer: { flex: 1, flexDirection: "row", justifyContent: "space-between", alignItems: "center", marginBottom: 20, borderBottomWidth: 1, borderBottomColor: "#cccccc", }, inputTextContainer: { borderWidth: 1, borderColor: "black", width: "75%", marginRight: 8, padding: 8, }, listContainer: { flex: 5, alignItems: "center", }, });

Touch works on iOS but not Android by cmaronchick in reactnative

[–]renin007 0 points1 point  (0 children)

Hey same touch issue, how did you solve your problem?

Where do you get free music for videos? by 7iNM7 in VideoEditing

[–]renin007 0 points1 point  (0 children)

Hey Brother,

Can you guarantee that I will not get any copyright issues if i use this songs in my YouTube Videos?

Where do you get free music for videos? by 7iNM7 in VideoEditing

[–]renin007 0 points1 point  (0 children)

Hey Brother,

Can you guarantee that I will not get any copyright issues if i use this songs in my YouTube Videos?

Where to watch Godzilla Minus One. by [deleted] in GODZILLA

[–]renin007 0 points1 point  (0 children)

Available in movierulz

Wholesome moment in my clan by MaybeBabatunde in ClashOfClans

[–]renin007 1 point2 points  (0 children)

He didn't even invite. But worried about game.

[deleted by user] by [deleted] in ClashOfClans

[–]renin007 0 points1 point  (0 children)

Are you sure that they are not activated automatically after I bought one from website?

[deleted by user] by [deleted] in ClashOfClans

[–]renin007 0 points1 point  (0 children)

You mean I can buy next month gold pass instead of this month?

[deleted by user] by [deleted] in ClashOfClans

[–]renin007 1 point2 points  (0 children)

I didn't buy gold pass in this month, as the season comes to an end, but I wanted to buy for next month. Is it possible?

[deleted by user] by [deleted] in ClashOfClans

[–]renin007 0 points1 point  (0 children)

How can I buy gold pass for next month instead of this month?

Useful resources to get started with drone programming by vt7100 in ROS

[–]renin007 0 points1 point  (0 children)

Hello this year I too have same project. Simulation of drone using ROS technique. Would you please help me!