Flutter 常用第三方库整理

网络请求

Dio

dio是一个强大的Dart Http请求库,支持Restful API、FormData、拦截器、请求取消、Cookie管理、文件上传/下载、超时、自定义适配器等...

dependencies:
  dio: ^2.1.6

http

dart官方网络请求库

Gson

1.json_annotation

dependencies:
  json_annotation: ^2.0.0
dev_dependencies:
  build_runner: ^1.3.3
  json_serializable: ^2.0.0

2.json_model

只用一行命令,直接将Json文件转为Dart model类。

dev_dependencies:
  json_model: ^0.0.2
  build_runner: ^1.3.3
  json_serializable: ^2.0.0

Toast

fluttertoast

fluttertoast: ^2.2.4

状态管理

fish-redux

Fish Redux 是一个基于 Redux 数据管理的组装式 flutter 应用框架, 它特别适用于构建中大型的复杂应用。
插件使用文档:https://github.com/BakerJQ/FishReduxTemplateForAS

下拉刷新,加载更多

flutter_easyrefresh: ^1.2.7

你可能感兴趣的:(Flutter 常用第三方库整理)