Commit 7a8e550e authored by Valentine Wallace's avatar Valentine Wallace

Make the fields of Detail views copyable.

parent a9877f11
......@@ -144,7 +144,9 @@ const detailStyles = createStyles(
export const DetailField = ({ name, children, style }) => (
<View style={[detailStyles.content, style]}>
<Text style={detailStyles.name}>{name}</Text>
<Text style={detailStyles.text}>{children}</Text>
<Text style={detailStyles.text} selectable>
{children}
</Text>
</View>
);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment