Minor UI improvements.

This commit is contained in:
Patrick Fic
2025-10-23 15:01:40 -07:00
parent 272fc619dc
commit 0809a01c90
5 changed files with 14 additions and 9 deletions

View File

@@ -18,7 +18,7 @@ export default function DataLabelComponent({
const { key, ...rest } = restProps;
return (
<View key={key} {...rest} style={{ margin: 4, ...restProps.style }}>
<Text>{label}</Text>
<Text style={{ fontWeight: "bold" }}>{label}</Text>
<Text>{theContent}</Text>
</View>
);