You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
736 B
29 lines
736 B
import React from "react";
|
|
import { StyleSheet, View, Text } from "react-native";
|
|
|
|
import { FontAwesome5 } from "@expo/vector-icons";
|
|
import { dimensions } from "../config/dimensions";
|
|
import colors from "../config/colors";
|
|
|
|
function InDevelopment(props) {
|
|
return (
|
|
<View style={styles.container}>
|
|
<FontAwesome5 name="laptop-code" size={60} color="black" />
|
|
<Text style={{ fontSize: dimensions.text.header, fontWeight: "bold" }}>
|
|
Em construção...
|
|
</Text>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
backgroundColor: colors.white,
|
|
flex: 1,
|
|
flexDirection: "column",
|
|
alignItems: "center",
|
|
justifyContent: "flex-start",
|
|
},
|
|
});
|
|
|
|
export default InDevelopment;
|