nirikshak 0.1.1 copy "nirikshak: ^0.1.1" to clipboard
nirikshak: ^0.1.1 copied to clipboard

Nirikshak is a lightweight Dio HTTP Inspector tool for Flutter which helps debugging http requests. It's a fork of popular package alice.

Nirikshak #

pub package pub package pub package pub package

Nirikshak is a lighweight Dio HTTP Inspector tool for Flutter which helps debugging http requests. Removed all the extra dependencies except Dio. It's a fork of Alice.

Features:
✔️ Removed all the dependenices except Dio
✔️ Detailed logs for each Dio HTTP calls (HTTP Request, HTTP Response)
✔️ Inspector UI for viewing HTTP calls
✔️ Statistics
✔️ Error handling
✔️ HTTP calls search

Install #

  1. Add this to your pubspec.yaml file:
dependencies:
  nirikshak: ^latest-version
copied to clipboard
  1. Install it
$ flutter packages get
copied to clipboard
  1. Import it
import 'package:nirikshak/nirikshak.dart';
copied to clipboard

Usage #

Nirikshak configuration #

  1. Create Nirikshak instance:
Nirikshak nirikshak = Nirikshak();
copied to clipboard

And that's it! Nirikshak will automatically takes the theme mode as per your app.

Dio configuration #

You just need to add the Dio interceptor.

Dio dio = Dio();
dio.interceptors.add(nirikshak.getDioInterceptor());
copied to clipboard

Show inspector manually #

To view the Nirikshak, you need to call showNirikshak with context:

nirikshak.showNirikshak(context);
copied to clipboard

Example #

See complete example here: https://github.com/thealteria/nirikshak/blob/main/example/lib/main.dart

9
likes
130
points
4.42k
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.28 - 2025.04.12

Nirikshak is a lightweight Dio HTTP Inspector tool for Flutter which helps debugging http requests. It's a fork of popular package alice.

Repository (GitHub)

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

dio, flutter

More

Packages that depend on nirikshak