Browse Source

updating icon from under construction screens

master
analuizaff 4 years ago
parent
commit
545f12344c
  1. 4
      src/app/screens/AccountScreen.js
  2. 4
      src/app/screens/MessagesScreen.js
  3. 4
      src/app/screens/OfficialMessagesScreen.js

4
src/app/screens/AccountScreen.js

@ -3,14 +3,14 @@ import { StyleSheet, View, Text } from "react-native";
import colors from "../config/colors"; import colors from "../config/colors";
import Screen from "../components/Screen"; import Screen from "../components/Screen";
import { AntDesign } from "@expo/vector-icons";
import { dimensions } from "../config/dimensions"; import { dimensions } from "../config/dimensions";
import { FontAwesome5 } from '@expo/vector-icons';
function AccountScreen({ navigation }) { function AccountScreen({ navigation }) {
return ( return (
<Screen style={styles.screen}> <Screen style={styles.screen}>
<View style={styles.container}> <View style={styles.container}>
<AntDesign name="warning" size={60} color="black" />
<FontAwesome5 name="laptop-code" size={60} color="black" />
<Text style={{ fontSize: dimensions.text.header, fontWeight: "bold" }}> <Text style={{ fontSize: dimensions.text.header, fontWeight: "bold" }}>
Em construção... Em construção...
</Text> </Text>

4
src/app/screens/MessagesScreen.js

@ -9,7 +9,7 @@ import {
} from "../components/lists"; } from "../components/lists";
import colors from "../config/colors"; import colors from "../config/colors";
import { AntDesign } from "@expo/vector-icons";
import { FontAwesome5 } from '@expo/vector-icons';
import { dimensions } from "../config/dimensions"; import { dimensions } from "../config/dimensions";
/*const initialMessages = [ /*const initialMessages = [
@ -71,7 +71,7 @@ function MessagesScreen(props) {
( (
<Screen style={styles.screen}> <Screen style={styles.screen}>
<View style={styles.container}> <View style={styles.container}>
<AntDesign name="warning" size={60} color="black" />
<FontAwesome5 name="laptop-code" size={60} color="black" />
<Text <Text
style={{ fontSize: dimensions.text.header, fontWeight: "bold" }} style={{ fontSize: dimensions.text.header, fontWeight: "bold" }}
> >

4
src/app/screens/OfficialMessagesScreen.js

@ -3,14 +3,14 @@ import { StyleSheet, View, Text } from "react-native";
import colors from "../config/colors"; import colors from "../config/colors";
import Screen from "../components/Screen"; import Screen from "../components/Screen";
import { AntDesign } from "@expo/vector-icons";
import { FontAwesome5 } from '@expo/vector-icons';
import { dimensions } from "../config/dimensions"; import { dimensions } from "../config/dimensions";
function OfficialMessagesScreen(props) { function OfficialMessagesScreen(props) {
return ( return (
<Screen style={styles.screen}> <Screen style={styles.screen}>
<View style={styles.container}> <View style={styles.container}>
<AntDesign name="warning" size={60} color="black" />
<FontAwesome5 name="laptop-code" size={60} color="black" />
<Text style={{ fontSize: dimensions.text.header, fontWeight: "bold" }}> <Text style={{ fontSize: dimensions.text.header, fontWeight: "bold" }}>
Em construção... Em construção...
</Text> </Text>

Loading…
Cancel
Save