dio_handler

Creator: coderz1093

Last updated:

0 purchases

dio_handler Image
dio_handler Images

Languages

Categories

Add to Cart

Description:

dio handler

DioHandler #



Introduction #
DioHandler is a Flutter package designed to simplify network API calls using the Dio HTTP client. It provides utility functions and customization options to streamline API request handling in your Flutter applications.
Features #

Simplified API calls with Dio.
Customizable error and loading dialogs.
Network connectivity check.
Callback time measurement.


Table of Contents #

Installation
Usage

Import
Create an Instance
Make API Requests


Example
Contributing
License


Installation #
To use DioHandler in your Flutter project, add it as a dependency in your pubspec.yaml file:
dependencies:
dio_handler: <latest_version>
copied to clipboard
Then, run flutter pub get to install the package.

Usage #
Import the Package #
First, import the dio_handler package in your Dart file:
import 'package:dio_handler/dio_handler.dart';
copied to clipboard
Create a DioHandler Instance #
Create an instance of DioHandler by providing a Dio instance and other optional parameters:
final DioHandler dioHandler = DioHandler(
customErrorDialog: MyCustomErrorDialog(), // Optional: Provide a custom error dialog widget
customLoadingDialog: MyCustomLoadingDialog(), // Optional: Provide a custom loading dialog widget
isCheckNetworkConnectivity: true, // Optional: Enable network connectivity check
isAlertDialogs: true, // Optional: Show alert dialogs for errors
isCallBackTime: true, // Optional: Measure API callback time (debug mode)
);
copied to clipboard
Replace MyCustomErrorDialog() and MyCustomLoadingDialog() with your actual custom error and loading dialog widgets if needed.
Make API Requests #
To make an API request and handle responses, use the callAPI() method:
dioHandler.callAPI(
serviceUrl: 'https://api.example.com/data',
method: 'GET',
success: (response) {
// Handle successful response here
print('API Request Successful');
print(response.data);
},
error: (error) {
// Handle error response here
print('API Request Error');
print(error);
},
showProcess: true, // Set to true to display a loading dialog
);
copied to clipboard

Example #
You can find an example of how to use DioHandler in the example folder of this package. To run the example, follow these steps:

Clone this repository.
Navigate to the example folder.
Run flutter run to launch the example app.


Get in touch #
If you have any questions, feel free to reach out:

Email: [email protected]
GitHub: @Arfaz123
LinkedIn: @Arfaz Chhapawala
YouTube: @devfaaz


Contributing #
Contributions to the dio_handler package are welcome! If you find a bug or want to add a new feature, feel free to open an issue or submit a pull request.
Contributors #




License #
This package is released under the Apache License. See the LICENSE file for details.

Feel free to explore the features of the DioHandler package and customize it to suit your needs. If you have any questions or feedback, don't hesitate to reach out. Happy coding!

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.