Base dark theme implementation

This commit is contained in:
Patrick Fic
2025-10-23 13:44:33 -07:00
parent b6271b8ef2
commit f170192008
22 changed files with 308 additions and 176 deletions

View File

@@ -1,6 +1,7 @@
import { DateTime } from "luxon";
import React from "react";
import { Text, View } from "react-native";
import { View } from "react-native";
import { Text } from "react-native-paper";
export default function DataLabelComponent({
label,
@@ -17,7 +18,7 @@ export default function DataLabelComponent({
const { key, ...rest } = restProps;
return (
<View key={key} {...rest} style={{ margin: 4, ...restProps.style }}>
<Text style={{ color: "slategray" }}>{label}</Text>
<Text>{label}</Text>
<Text>{theContent}</Text>
</View>
);