Open
Description
Feature Request
Make response body section more user friendly. Mobile screen is limited and let say the response is very big, then it could hurt UX when inspecting. We can collapse the JSON value like redux-devtools.
There is also react-native-json-tree which is based on react-json-tree
used by redux-devtools.
Thanks!
Additional context
const getFullRequest = () => {
const processedRequest = {
...request,
response: responseBody ? JSON.parse(responseBody) : undefined,
duration: request.duration,
};
return JSON.stringify(processedRequest, null, 2);
};