Browse Source

Removing title in forms screens

master
GabrielTrettel 4 years ago
parent
commit
85939d8ae2
  1. 15
      src/app/screens/PluviometerSharingDataScreen.js
  2. 11
      src/app/screens/RainSharingDataScreen.js
  3. 11
      src/app/screens/SharingFloodZonesScreen.js

15
src/app/screens/PluviometerSharingDataScreen.js

@ -39,21 +39,6 @@ function PluviometerSharingDataScreen(props) {
return ( return (
<Screen style={styles.container}> <Screen style={styles.container}>
<View style={{ alignItems: "center" }}>
<Image
style={styles.image}
source={require("../assets/pluviometro.png")}
/>
<Text
style={{
fontSize: dimensions.text.header,
fontWeight: "bold",
color: colors.primary,
}}
>
Pluviômetro
</Text>
</View>
<ScrollView> <ScrollView>
<Form <Form
initialValues={{ initialValues={{

11
src/app/screens/RainSharingDataScreen.js

@ -41,17 +41,6 @@ function RainSharingDataScreen(props) {
return ( return (
<Screen style={styles.container}> <Screen style={styles.container}>
<Text
style={{
fontSize: dimensions.text.header,
fontWeight: "bold",
color: colors.primary,
textAlign: "center",
marginBottom: 30,
}}
>
Chuva
</Text>
<ScrollView> <ScrollView>
<Form <Form
initialValues={{ initialValues={{

11
src/app/screens/SharingFloodZonesScreen.js

@ -40,17 +40,6 @@ function SharingFloodZonesScreen(props) {
return ( return (
<Screen style={styles.container}> <Screen style={styles.container}>
<Text
style={{
fontSize: dimensions.text.header,
fontWeight: "bold",
color: colors.primary,
textAlign: "center",
marginBottom: 10,
}}
>
Pontos de alagamento
</Text>
<KeyboardAwareScrollView <KeyboardAwareScrollView
resetScrollToCoords={{ x: 0, y: 0 }} resetScrollToCoords={{ x: 0, y: 0 }}
scrollEnabled={true} scrollEnabled={true}

Loading…
Cancel
Save