Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 454 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 454 Bytes

Flutter Network Call Example

This is a simple example of how to make a network call in Flutter. It uses the dio package and the getx for state management.

Getting Started

dependencies:
  flutter:
    sdk: flutter
  get: ^4.6.5
  dio: ^4.0.6

Usage

import 'package:dio/dio.dart';
import 'package:get/get.dart';

Screenshots