Resolve issue for temp uploads & add search.

This commit is contained in:
Patrick Fic
2021-05-13 09:39:29 -07:00
parent bdf7390678
commit b6155c6a85
11 changed files with 230 additions and 185 deletions

View File

@@ -1,6 +1,6 @@
import { DateTime } from "luxon";
import React from "react";
import { Text, TextInput, View } from "react-native";
import { Text, View } from "react-native";
export default function DataLabelComponent({
label,
@@ -16,8 +16,8 @@ export default function DataLabelComponent({
);
return (
<View {...restProps}>
<TextInput disabled placeholder={label} />
<View {...restProps} style={{ margin: 4, ...restProps.style }}>
<Text style={{ color: "slategray" }}>{label}</Text>
<Text>{theContent}</Text>
</View>
);