Browse Source

adding the correct app's name to screens

master
analuizaff 3 years ago
parent
commit
6cd0a8c3dd
  1. 2
      src/app/screens/Abbout.js
  2. 15
      src/app/screens/LoginScreen.js

2
src/app/screens/Abbout.js

@ -15,7 +15,7 @@ export default function Abbout(props) {
return ( return (
<View style={styles.container}> <View style={styles.container}>
<View style={styles.HeaderBackground}> <View style={styles.HeaderBackground}>
<Text style={styles.txtHeader}>Waterproofing Data</Text>
<Text style={styles.txtHeader}>Dados à Prova d'água</Text>
</View> </View>
<ScrollView style={styles.scrollContainer}> <ScrollView style={styles.scrollContainer}>
<View style={{ padding: dimensions.spacing.normal_padding }}> <View style={{ padding: dimensions.spacing.normal_padding }}>

15
src/app/screens/LoginScreen.js

@ -102,13 +102,7 @@ export default function LoginScreen(props) {
} }
> >
<View paddingHorizontal={14}> <View paddingHorizontal={14}>
<assets.AppLogoTitle
preserveAspectRatio="xMidYMid meet"
width={300}
height={30}
alignSelf="center"
marginBottom={dimensions.spacing.big_padding}
/>
<Text style={styles.txtHeader}>Dados à Prova d'água</Text>
<ErrorMessage <ErrorMessage
error="Email ou senha inválidos" error="Email ou senha inválidos"
@ -182,4 +176,11 @@ const styles = StyleSheet.create({
containter: { containter: {
justifyContent: "center", justifyContent: "center",
}, },
txtHeader: {
fontSize: dimensions.text.header,
color: colors.primary,
fontWeight: "bold",
textAlign: "center",
padding: dimensions.spacing.normal_padding,
},
}); });
Loading…
Cancel
Save