На самом деле он не обновляется везде, я полагаю, что он обновляется.
import React, { useState, useRef } from "react";
import {
View,
Text,
StyleSheet,
StatusBar,
ScrollView,
TouchableOpacity,
Dimensions,
ActivityIndicator,
} from "react-native";
import { TextField } from "react-native-material-textfield";
import Colors from "../constants/Colors";
const welcomescreen = (props) => {
let [length, setLength] = useState();
let [breadth, setBreadth] = useState();
let [height, setHeight] = useState();
let [volume, setVolume] = useState();
const [loading, setLoading] = useState(false);
const lengthInputHandler = (l) => {
setLength(l);
};
const breadthInputHandler = (br) => {
setBreadth(br);
};
const HeightInputHandler = (h) => {
setHeight(h);
};
let lengthIntPart,
breadthIntPart,
heightIntPart,
lengthinInches,
breadthinInches,
heightinInches,
res;
const volumeCalc = () => {
lengthIntPart = Math.floor(parseFloat(length));
lengthinInches =
(lengthIntPart + (parseFloat(length) - lengthIntPart) / 1.2) * 12;
breadthIntPart = Math.floor(parseFloat(breadth));
breadthinInches =
(breadthIntPart + (parseFloat(breadth) - breadthIntPart) / 1.2) * 12;
heightIntPart = Math.floor(parseFloat(height));
heightinInches =
(heightIntPart + (parseFloat(height) - heightIntPart) / 1.2) * 12;
res = lengthinInches * breadthinInches * heightinInches;
return res;
};
return (
<ScrollView style={styles.screen}>
<StatusBar barStyle="dark-content" />
<View style={styles.form}>
<TextField
label="Length"
onChangeText={lengthInputHandler}
keyboardType="numeric"
textAlignVertical="center"
/>
<TextField
label="Breadth"
onChangeText={breadthInputHandler}
keyboardType="numeric"
/>
<TextField
label="Height"
onChangeText={HeightInputHandler}
keyboardType="numeric"
/>
</View>
<View style={{ alignItems: "center" }}>
<TouchableOpacity
style={styles.calcBtn}
onPress={() => {
setVolume(volumeCalc());
setLoading(true);
setTimeout(() => {
if (volume !== undefined) {
props.navigation.navigate({
name: "resultscreen",
params: {
volume: volume,
},
});
}
setLoading(false);
console.log(volume);
}, 3000);
}}
disabled={!!!length && !!!breadth && !!!height}
>
{!loading ? (
<Text style={styles.text}>Calculate</Text>
) : (
<ActivityIndicator size="small" color={Colors.white} />
)}
</TouchableOpacity>
</View>
<View style={{ width: "90%" }}>
<View style={{ flexDirection: "row", justifyContent: "space-around" }}>
<Text>Volume :</Text>
<Text>{volume} cubic inches </Text> //line 14
</View>
<View style={{ flexDirection: "row", justifyContent: "space-around" }}>
<Text>Volume:</Text>
<Text>{volume / 1728} Cb. Feet</Text>
</View>
<View style={{ flexDirection: "row", justifyContent: "space-around" }}>
<Text>Weight:</Text>
<Text>{volume / 1728 / 25} Metric tonne</Text>
</View>
</View>
</ScrollView>
);
};
export default welcomescreen;
lines numbers are mentioned in comments of the code
idk, почему это происходит, но в строке 149, ближе к концу кода, он работает нормально, но в строке 89 и далее в методе onPress
он не меняет состояние даже там, и он передает само начальное состояние, которое не определено, я попытался инициализировать его значениями, такими как 0 и null, и он все еще консольный. зарегистрированы 0 и null соответственно, поэтому я поставил проверку на undefined, чтобы он не go переходил на следующую страницу, если нет реального значения
the next screen aka resultscreen
import React from "react";
import { View, Text } from "react-native";
const ResultScreen = (props) => {
const volume = props.route.params.volume;
console.log(volume);
return (
<View>
<Text>{volume}</Text>
</View>
);
};
export default ResultScreen;
`снова на следующем экране, если я позволю ему go, даже если он не определен, он console.logs undefined, что довольно очевидно и глупо с моей стороны помещать его сюда, но это все '
i have no idea why this is happening
NOTE : But if i press the button twice, it updates the state on the second click , its strange that is happening