FLUTTER ECOSYSTEM

devmuaz/awesome-dio-interceptor

シンプルなDioログインターセプター(主に組み込みのDio LogInterceptorにインスパイアされています)。色分け機能とJSONフォーマットにより、より読みやすい出力が可能になります。

awesome-dio-interceptor のプロジェクト画像
Stars
22
Forks
4
最終プッシュ(UTC)
2024/11/05
プロジェクト状態
公開中
AbdulMuaz Aqeel GitHub avatar
GITHUB User

AbdulMuaz Aqeel ↗

Sr. Software Engineer

@talabateyIraq, Baghdad公式サイト ↗
言語DartSwiftKotlinObjective-C

技術トピック

使用している依存関係

依存関係一覧 3 件

元の README

以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。

README を開く / 閉じる

Awesome Dio Interceptor

A simple dio log interceptor (mainly inspired by the built-in dio LogInterceptor), which has coloring features and json formatting so you can have a better readable output.

Features

  • Customizable, minimizable, and colorful output 🔥
  • Json formatting 💪
  • Pretty FormData support (fields & files) output ⚡️

Output Samples

The last two images have been minimized, so we can have better look at the most important logs (can be enabled and disabled, enabled by default)

https://github.com/devmuaz/awesome_dio_interceptor/blob/master/images/response.png?raw=true
https://github.com/devmuaz/awesome_dio_interceptor/blob/master/images/minimized-response.png?raw=true
https://github.com/devmuaz/awesome_dio_interceptor/blob/master/images/minimized-error.png?raw=true

Install

dependencies:
	awesome_dio_interceptor: <latest_version>

Usage

Just add the AwesomeDioInterceptor to your dio interceptors like so:

dio.interceptors.add(
    AwesomeDioInterceptor(
        // Disabling headers and timeout would minimize the logging output.
        // Optional, defaults to true
        logRequestTimeout: false,
        logRequestHeaders: false,
        logResponseHeaders: false,

        // Optional, defaults to the 'log' function in the 'dart:developer' package.
        logger: debugPrint,
    ),
);

Medium articles by the author

You can always read the articles I write on my devmuaz account which I write pretty great flutter content out there.

Contributions & Support

Issues and pull requests are always welcome 😄

If you find this package useful for you and liked it, give it a like ❤️ and star the repo ⭐️ it would mean a lot!

License

MIT