You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are some values of a request or a response that are poorly printed or not visible at all. The scope of this ticket is to add an infrastructure to be able to pretty-print data.
Proposal
We define a pretty-print ViewController protocol, for example: PrettyPrinter
The PrettyPrinter defines a static func viewController(for item: Any) -> UIViewController?
A list of PrettyPrinter classes is defined
A default mimetype-to-prettyprinter-class mapping is defined
If a row for a record is tapped
If it is the request or response body, the mimetype mapping is used to find a PrettyPrinter-class
If no PrettyPrinter is found, or the PrettyPrinter failed to create a ViewController for that item, the user can select from a list of all PrettyPrinter classes or can chose to share this item
The text was updated successfully, but these errors were encountered:
There are some values of a request or a response that are poorly printed or not visible at all. The scope of this ticket is to add an infrastructure to be able to pretty-print data.
Proposal
PrettyPrinter
PrettyPrinter
defines astatic func viewController(for item: Any) -> UIViewController?
PrettyPrinter
classes is definedThe text was updated successfully, but these errors were encountered: