import React, { useEffect, useState, useContext } from "react"; import { StyleSheet, View, Text } from "react-native"; import ConfirmationModal from "../components/ConfirmationModal"; import { ScrollView } from "react-native"; import assets from "../config/assets"; import { dimensions } from "../config/dimensions"; import SvgLabeledButton from "../components/SvgLabeledButton"; import { AuthContext } from "../auth/context"; import colors from "../config/colors"; function SharingDataScreen({ navigation }) { const authContext = useContext(AuthContext); const [showLog, setShowLog] = useState(false); const isRegistered = authContext.user?.username != null; return ( authContext.setUser(false)} onDecline={() => setShowLog(false)} /> navigation.navigate("FloodSharingData")} active={isRegistered} inactiveOnPress={() => setShowLog(true)} /> navigation.navigate("RainSharingData")} SvgImage={assets.rainLevel.Rain_1_5} active={isRegistered} inactiveOnPress={() => setShowLog(true)} /> navigation.navigate("PluviometerSharingData")} SvgImage={assets.PluviometerIcon} active={isRegistered} inactiveOnPress={() => setShowLog(true)} /> navigation.navigate("RiverFloodData")} SvgImage={assets.riverLevel.RiverIcon} active={isRegistered} inactiveOnPress={() => setShowLog(true)} /> {!isRegistered && ( Para enviar uma informação, faça o login ou cadastre-se )} ); } const styles = StyleSheet.create({ text: { fontSize: dimensions.text.default, textAlign: "center", marginTop: 10, }, container: { paddingHorizontal: 10, flex: 1, }, }); export default SharingDataScreen;