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.
Tp_ReactNative/JokesApp/screens/SettingsScreen.tsx

33 lines
710 B

import React from "react";
import {FlatList, Image, SafeAreaView, ScrollView, SectionListComponent, StyleSheet, Text, View} from "react-native";
import {indigo, purpleColor} from "../Theme";
export function SettingsScreen() {
return (
<View style={styles.font}>
<Text style={styles.text}>Settings Page</Text>
<Text style={styles.text}>In Work</Text>
</View>
);
}
const styles = StyleSheet.create({
font: {
backgroundColor: indigo,
width: '100%',
height: '100%',
},
text: {
fontSize: 24,
color: 'darksalmon',
textAlign: 'center',
fontWeight: 'bold',
marginVertical: 20,
}
});