154 lines
2.9 KiB
TypeScript
154 lines
2.9 KiB
TypeScript
import { StyleSheet } from "react-native";
|
|
|
|
const styles = StyleSheet.create({
|
|
closeIconButton: {
|
|
backgroundColor: "#FF3B30",
|
|
borderRadius: 10,
|
|
padding: 10,
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
},
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: "#f5f5f5",
|
|
},
|
|
header: {
|
|
flexDirection: "row",
|
|
justifyContent: "space-between",
|
|
alignItems: "center",
|
|
paddingHorizontal: 20,
|
|
paddingTop: 30,
|
|
paddingBottom: 16,
|
|
backgroundColor: "#fff",
|
|
borderBottomWidth: 1,
|
|
borderBottomColor: "#eee",
|
|
},
|
|
title: {
|
|
fontSize: 22,
|
|
fontWeight: "700",
|
|
color: "#000",
|
|
flex: 1,
|
|
},
|
|
headerButtons: {
|
|
flexDirection: "row",
|
|
alignItems: "center",
|
|
gap: 12,
|
|
},
|
|
editButton: {
|
|
padding: 4,
|
|
},
|
|
editIconButton: {
|
|
backgroundColor: "#007AFF",
|
|
borderRadius: 10,
|
|
padding: 10,
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
},
|
|
cancelButton: {
|
|
paddingHorizontal: 12,
|
|
paddingVertical: 6,
|
|
},
|
|
cancelButtonText: {
|
|
color: "#007AFF",
|
|
fontSize: 16,
|
|
fontWeight: "600",
|
|
},
|
|
saveButton: {
|
|
backgroundColor: "#007AFF",
|
|
paddingHorizontal: 16,
|
|
paddingVertical: 6,
|
|
borderRadius: 6,
|
|
},
|
|
saveButtonText: {
|
|
color: "#fff",
|
|
fontSize: 16,
|
|
fontWeight: "600",
|
|
},
|
|
closeButton: {
|
|
padding: 4,
|
|
},
|
|
content: {
|
|
flex: 1,
|
|
padding: 16,
|
|
},
|
|
itemCard: {
|
|
backgroundColor: "#fff",
|
|
borderRadius: 12,
|
|
padding: 16,
|
|
marginBottom: 12,
|
|
shadowColor: "#000",
|
|
shadowOpacity: 0.05,
|
|
shadowRadius: 4,
|
|
shadowOffset: { width: 0, height: 2 },
|
|
elevation: 2,
|
|
},
|
|
fieldGroup: {
|
|
marginBottom: 12,
|
|
},
|
|
rowGroup: {
|
|
flexDirection: "row",
|
|
marginBottom: 12,
|
|
},
|
|
label: {
|
|
fontSize: 13,
|
|
fontWeight: "600",
|
|
color: "#666",
|
|
marginBottom: 6,
|
|
},
|
|
input: {
|
|
borderWidth: 1,
|
|
borderColor: "#007AFF",
|
|
borderRadius: 8,
|
|
paddingHorizontal: 12,
|
|
paddingVertical: 10,
|
|
fontSize: 15,
|
|
color: "#000",
|
|
backgroundColor: "#fff",
|
|
},
|
|
inputDisabled: {
|
|
borderColor: "#ddd",
|
|
backgroundColor: "#f9f9f9",
|
|
color: "#666",
|
|
},
|
|
totalContainer: {
|
|
backgroundColor: "#fff5e6",
|
|
borderRadius: 8,
|
|
paddingHorizontal: 12,
|
|
paddingVertical: 10,
|
|
borderWidth: 1,
|
|
borderColor: "#ffd699",
|
|
},
|
|
totalText: {
|
|
fontSize: 16,
|
|
fontWeight: "700",
|
|
color: "#ff6600",
|
|
},
|
|
footerTotal: {
|
|
backgroundColor: "#fff",
|
|
borderRadius: 12,
|
|
padding: 20,
|
|
marginTop: 8,
|
|
marginBottom: 50,
|
|
flexDirection: "row",
|
|
justifyContent: "space-between",
|
|
alignItems: "center",
|
|
shadowColor: "#000",
|
|
shadowOpacity: 0.1,
|
|
shadowRadius: 4,
|
|
shadowOffset: { width: 0, height: 2 },
|
|
elevation: 3,
|
|
},
|
|
footerLabel: {
|
|
fontSize: 18,
|
|
fontWeight: "700",
|
|
color: "#007bff",
|
|
},
|
|
footerAmount: {
|
|
fontSize: 20,
|
|
fontWeight: "700",
|
|
color: "#ff6600",
|
|
},
|
|
});
|
|
|
|
export default styles;
|