liuyuqi-dellpc 1 year ago
parent
commit
598dcf2a2a
6 changed files with 31 additions and 12 deletions
  1. 5 12
      README.md
  2. 7 0
      lib/dao/user_dao.dart
  3. 7 0
      lib/model/api.dart
  4. 1 0
      lib/model/config.dart
  5. 5 0
      lib/provider/user_provider.dart
  6. 6 0
      lib/utils/sp_util.dart

+ 5 - 12
README.md

@@ -1,16 +1,9 @@
 # flutter_provider_demo
 
-A new Flutter project.
+provider 状态管理demo
 
-## Getting Started
+## Develop
 
-This project is a starting point for a Flutter application.
-
-A few resources to get you started if this is your first Flutter project:
-
-- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
-- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
-
-For help getting started with Flutter development, view the
-[online documentation](https://docs.flutter.dev/), which offers tutorials,
-samples, guidance on mobile development, and a full API reference.
+```
+flutter build apk
+```

+ 7 - 0
lib/dao/user_dao.dart

@@ -0,0 +1,7 @@
+import 'package:flutter_provider_demo/model/user_model.dart';
+
+class UserDao {
+  Future<UserModel> login() async {
+    Dio().post();
+  }
+}

+ 7 - 0
lib/model/api.dart

@@ -0,0 +1,7 @@
+class Api {
+  static const String baseUrl = "https://api.themoviedb.org/3/";
+  static const String login = "$baseUrl/login";
+  static const String register = "$baseUrl/register";
+  static const String logout = "$baseUrl/logout";
+  static const String getUserinfo = "$baseUrl/getUserinfo";
+}

+ 1 - 0
lib/model/config.dart

@@ -0,0 +1 @@
+class Config {}

+ 5 - 0
lib/provider/user_provider.dart

@@ -0,0 +1,5 @@
+import 'package:flutter/material.dart';
+
+class UsreProvider extends ChangeNotifier {
+  
+}

+ 6 - 0
lib/utils/sp_util.dart

@@ -0,0 +1,6 @@
+/// Description: 
+/// Time       : 09/03/2023 Sunday
+/// Author     : liuyuqi.gov@msn.cn
+class SpUtil {
+
+}