api_exception_handler

Creator: coderz1093

Last updated:

0 purchases

api_exception_handler Image
api_exception_handler Images

Languages

Categories

Add to Cart

Description:

api exception handler

API Exception Handler is an advance error handler for http request. #
Getting started #
Add dependency #
dependencies:
api_exception_handler: ^0.0.3
copied to clipboard
Super simple to use #
Future fetchData() async {
String url = 'https://api.covid19api.com/summary';

var response = await ApiHandler().get(url: url);
var data = json.decode(response);

return data;
}
copied to clipboard
APIResponseHandler(
function: [fetchData()],
successScreen: (data) {
return Text(data!.data[0].toString());
},
errorScreen: (data) {
return SizedBox(
width: MediaQuery.of(context).size.width,
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(data.toString()),
const SizedBox(height: 20,),
InkWell(
onTap: () {
/// simply call setState(() {}) to refresh the data.
setState(() {});
},
child: Container(
decoration: BoxDecoration(
color: Colors.blueAccent,
borderRadius: BorderRadius.circular(10),
),
padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 20),
child: const Text('Retry', style: TextStyle(color: Colors.white),),
),
),
],
),
);
},
networkErrorScreen: const Text('Cannot establish connection with server!!'),
loadingScreen: const Center(
child: CupertinoActivityIndicator(radius: 20,),
),
)
copied to clipboard
Or simply use FutureBuilder #
FutureBuilder(
future: fetchData(),
builder: (BuildContext context, snapshot) {
if(snapshot.hasData) {
/// <<--->> ///
} else if(snapshot.hasError) {
/// <<--->> ///
} else if(snapshot.connectionState == ConnectionState.waiting) {
/// <<--->> ///
} else if(snapshot.connectionState == ConnectionState.none) {
/// <<--->> ///
}
return const Center(child: CupertinoActivityIndicator(radius: 18,),);
},
)
copied to clipboard

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.