import React from "react"; import { StyleSheet, View } from "react-native"; import * as Yup from "yup"; import { Form, FormField, FormPicker as Picker, SubmitButton, } from "../components/forms"; import CategoryPickerItem from "../components/CategoryPickerItem"; import Screen from "../components/Screen"; import FormImagePicker from "../components/forms/FormImagePicker"; import useLocation from "../hooks/useLocation"; import { Image, Text, TouchableOpacity} from 'react-native'; //1/3 const styles = StyleSheet.create({ container:{ paddingTop:50, }, rainLogo: { width: 110, height:100, margin:30, }, floodingLogo: { width: 85, height:85, marginTop: 70, }, }) class SharingDataScreen extends React.Component { static navigationOptions = { title: "SharingDataScreen", headerStyle: { backgroundColor: "#73C6B6" } }; render() { return( Enviar uma informação this.props.navigation.navigate("RainSharingData")}> Pontos de {"\n"}alagamento Chuva Diário do{"\n"}pluviômetro Nível de água {"\n"}no rio ); } } export default SharingDataScreen;