requests_inspector 2.2.1 copy "requests_inspector: ^2.2.1" to clipboard
requests_inspector: ^2.2.1 copied to clipboard

A Flutter package for logging API requests and accessing it by Shaking your phone to get the RequestsInspector widget on your screen.

2.2.1 #

  • Fix Nested MaterialApp bug with Navigator and BuildContext.
  • Some UI enhancement.

2.2.0 #

  • Add Run again button to rerun the selectedRequested from the package itself.
  • Add Clear all button to remove all RequestsDetails from requests list.

2.1.2 #

  • UI enhancement.

2.1.1 #

  • Fix UNIDENTIFIED error.

2.1.0 #

  • New UI theme is implemented.

2.0.2 #

  • Fix requestBody not showing when using RequestsInspectorInterceptor bug.

2.0.1 #

  • Fix supported platforms problem.

2.0.0 #

  • Add support for Web, MacOs, Windows and Linux.
  • More screenshots for the other platforms.
  • sentTime now is optional and the default value is DateTime.now().
  • Add better explanation for usage of ShowInspectorOn{LongPress, Shaking, Both} enum with RequestInspector widget.

1.2.2 #

  • Enhance time text appearance on SelectedRequest tab.
  • Fix selecting the current selected request not moving the SelectedRequest Tab bug.

1.2.1 #

  • Fix bug with RequestInspectorInterceptor to handle request onError.

1.2.0 #

  • Add support for queryParameters if not send inside the url.
final params = {'userId': 1};

InspectorController().addNewRequest(
    RequestDetails(
      ...
      queryParameters: params,
      ...

1.1.3+7 #

  • Add RequestsInspectorInterceptor that can be used with Dio instead of using normal InspectorController.addRequest method.

1.0.3+6 #

  • Add an option for opening inspector by passing showInspectorOn to RequestsInspector widget.

by default it is Shaking.

enum ShowInspectorOn {
  LongPress,
  Shaking,
  Both,
}

1.0.2+5 #

  • Reset MaterialApp widget back because of select text feature was not working correctly.

1.0.1+4 #

  • Remove Navigator from the Inspector widget tree.

1.0.0+3 #

  • Make sure the shaking sensor closed on dispose.
  • Move package to stable version v1.0.0+3.

0.0.2+2 #

  • Rename RequestsInspectorController to InspectorController to solve naming confusion.
  • Add full example on README.md file.

0.0.1+1 #

  • Fix screenshots on README.md file.

0.0.1 #

  • Initial release.
95
likes
0
pub points
92%
popularity

Publisher

verified publisherabdelazeem-kuratem.engineer

A Flutter package for logging API requests and accessing it by Shaking your phone to get the RequestsInspector widget on your screen.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

collection, dio, flutter, provider, shake

More

Packages that depend on requests_inspector