Skip to content

Commit

Permalink
feat: Enable selection and copy for request and response body on Andr…
Browse files Browse the repository at this point in the history
…oid (#82)
  • Loading branch information
alexbrazier authored May 24, 2023
1 parent e5a5d8e commit fd849f2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/RequestDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ const LargeText: React.FC<{ children: string }> = ({ children }) => {
<View style={styles.largeContent}>
<ScrollView nestedScrollEnabled>
<View>
<Text style={styles.content}>{children}</Text>
<Text style={styles.content} selectable>
{children}
</Text>
</View>
</ScrollView>
</View>
Expand Down

0 comments on commit fd849f2

Please sign in to comment.