Working on login screen

This commit is contained in:
2024-05-05 17:44:42 +02:00
parent 77e5082680
commit c2c3821ce2
5 changed files with 112 additions and 7 deletions

View File

@ -0,0 +1,33 @@
import React from "react";
import { Text, StyleSheet, Pressable } from "react-native";
export default function Button(props) {
const { onPress, title = "Save", color = "black" } = props;
return (
<Pressable
style={[styles.button, { backgroundColor: color }]}
onPress={onPress}
>
<Text style={styles.text}>{title}</Text>
</Pressable>
);
}
const styles = StyleSheet.create({
button: {
alignItems: "center",
justifyContent: "center",
paddingVertical: 12,
paddingHorizontal: 32,
borderRadius: 4,
elevation: 3,
backgroundColor: "black",
},
text: {
fontSize: 16,
lineHeight: 21,
fontWeight: "bold",
letterSpacing: 0.25,
color: "white",
},
});

View File

View File

@ -0,0 +1,8 @@
export const colors = {
gold: "#FFD700ff",
brown: "#8B4513ff",
green: "#228B22ff",
charcoal: "#2C3E50ff",
black: "#020405ff",
dark: "#010611",
};