custom_dio_fix 1.0.0 custom_dio_fix: ^1.0.0 copied to clipboard
基于custom_dio适配新版 Flutter 的网络请求插件
import 'package:custom_dio_fix/custom_dio.dart';
import 'package:custom_dio_fix_example/test_page.dart';
import 'package:flutter/material.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
CustomDio.setInitData(
CustomDioOptions(
baseUrl: "http://www.exmaple.com/api/v1/",
headers: {"authorization": "Bearer xxx"},
),
);
runApp(const MaterialApp(
home: TestPage(),
debugShowCheckedModeBanner: false,
));
}