liuyuqi-dellpc 1 year ago
parent
commit
aa5b966245

File diff suppressed because it is too large
+ 0 - 0
.flutter-plugins-dependencies


+ 2 - 2
android/app/build.gradle

@@ -26,7 +26,7 @@ apply plugin: 'com.android.application'
 apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
 apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
 
 
 android {
 android {
-    compileSdkVersion 32
+    compileSdkVersion 33
     signingConfigs {
     signingConfigs {
         release {
         release {
             storeFile file("sign/flutter_douyin.jks")
             storeFile file("sign/flutter_douyin.jks")
@@ -47,7 +47,7 @@ android {
         // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
         // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
         applicationId "com.example.douyin_demo"
         applicationId "com.example.douyin_demo"
         minSdkVersion 21
         minSdkVersion 21
-        targetSdkVersion 32
+        targetSdkVersion 33
         versionCode flutterVersionCode.toInteger()
         versionCode flutterVersionCode.toInteger()
         versionName flutterVersionName
         versionName flutterVersionName
         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

+ 10 - 6
android/app/src/main/AndroidManifest.xml

@@ -1,15 +1,17 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     package="com.example.douyin_demo">
     package="com.example.douyin_demo">
-
-    <!-- io.flutter.app.FlutterApplication is an android.app.Application that
-         calls FlutterMain.startInitialization(this); in its onCreate method.
-         In most cases you can leave this as-is, but you if you want to provide
-         additional functionality it is fine to subclass or reimplement
-         FlutterApplication and put your custom class here. -->
+    <uses-permission android:name="android.permission.INTERNET" />
+    <uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />
+    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
+    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
+    <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
+    <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
+    
     <application
     <application
         android:label="douyin_demo"
         android:label="douyin_demo"
         android:icon="@mipmap/ic_launcher">
         android:icon="@mipmap/ic_launcher">
         <activity
         <activity
+            android:exported="true"
             android:name=".MainActivity"
             android:name=".MainActivity"
             android:launchMode="singleTop"
             android:launchMode="singleTop"
             android:theme="@style/LaunchTheme"
             android:theme="@style/LaunchTheme"
@@ -31,4 +33,6 @@
         android:name="com.google.firebase.ml.vision.DEPENDENCIES"
         android:name="com.google.firebase.ml.vision.DEPENDENCIES"
         android:value="ocr,face" />
         android:value="ocr,face" />
     </application>
     </application>
+
+
 </manifest>
 </manifest>

+ 3 - 3
lib/detector_painters.dart

@@ -149,9 +149,9 @@ class TextDetectorPainter extends CustomPainter {
 }
 }
 
 
 Rect _scaleRect({
 Rect _scaleRect({
-  @required Rect rect,
-  @required Size imageSize,
-  @required Size widgetSize,
+  required Rect rect,
+  required Size imageSize,
+  required Size widgetSize,
 }) {
 }) {
   final double scaleX = widgetSize.width / imageSize.width;
   final double scaleX = widgetSize.width / imageSize.width;
   final double scaleY = widgetSize.height / imageSize.height;
   final double scaleY = widgetSize.height / imageSize.height;

+ 1 - 1
lib/index_page.dart

@@ -1,7 +1,7 @@
 import 'package:flutter/material.dart';
 import 'package:flutter/material.dart';
 
 
 class IndexPage extends StatefulWidget {
 class IndexPage extends StatefulWidget {
-  const IndexPage({Key key}) : super(key: key);
+  const IndexPage({Key? key}) : super(key: key);
 
 
   @override
   @override
   _IndexPageState createState() => _IndexPageState();
   _IndexPageState createState() => _IndexPageState();

+ 1 - 1
lib/main.dart

@@ -34,7 +34,7 @@ void main() async {
 }
 }
 
 
 class MyApp extends StatelessWidget {
 class MyApp extends StatelessWidget {
-  const MyApp({Key key}) : super(key: key);
+  const MyApp({Key? key}) : super(key: key);
 
 
   @override
   @override
   Widget build(BuildContext context) {
   Widget build(BuildContext context) {

+ 2 - 2
lib/pages/FaceDetection.dart

@@ -3,7 +3,7 @@ import 'package:flutter/material.dart';
 import 'package:image_picker/image_picker.dart';
 import 'package:image_picker/image_picker.dart';
 
 
 class FaceDetectionView extends StatefulWidget {
 class FaceDetectionView extends StatefulWidget {
-  FaceDetectionView({Key key}) : super(key: key);
+  FaceDetectionView({Key? key}) : super(key: key);
 
 
   @override
   @override
   _FaceDetectionViewState createState() => _FaceDetectionViewState();
   _FaceDetectionViewState createState() => _FaceDetectionViewState();
@@ -68,7 +68,7 @@ class _FaceDetectionViewState extends State<FaceDetectionView> {
 }
 }
 
 
 class FaceMain extends StatelessWidget {
 class FaceMain extends StatelessWidget {
-  const FaceMain({Key key}) : super(key: key);
+  const FaceMain({Key? key}) : super(key: key);
 
 
   @override
   @override
   Widget build(BuildContext context) {
   Widget build(BuildContext context) {

+ 4 - 4
lib/pages/RecommendPage/BottomSheet.dart

@@ -5,7 +5,7 @@ import 'package:flutter/material.dart';
 import 'package:provider/provider.dart';
 import 'package:provider/provider.dart';
 
 
 class ReplyFullList extends StatelessWidget {
 class ReplyFullList extends StatelessWidget {
-  ReplyFullList({Key key, this.pCtx}) : super(key: key);
+  ReplyFullList({Key? key, this.pCtx}) : super(key: key);
   final BuildContext pCtx;
   final BuildContext pCtx;
 
 
   @override
   @override
@@ -57,7 +57,7 @@ class ReplyFullList extends StatelessWidget {
 }
 }
 
 
 class ReplyList extends StatelessWidget {
 class ReplyList extends StatelessWidget {
-  const ReplyList({Key key, this.reply, this.controller}) : super(key: key);
+  const ReplyList({Key? key, this.reply, this.controller}) : super(key: key);
   final Reply reply;
   final Reply reply;
   final ScrollController controller;
   final ScrollController controller;
 
 
@@ -114,7 +114,7 @@ class ReplyList extends StatelessWidget {
 }
 }
 
 
 class AfterReply extends StatelessWidget {
 class AfterReply extends StatelessWidget {
-  const AfterReply({Key key, this.afterReply}) : super(key: key);
+  const AfterReply({Key? key, this.afterReply}) : super(key: key);
   final Reply afterReply;
   final Reply afterReply;
 
 
   @override
   @override
@@ -207,7 +207,7 @@ genAfterReplyList(List<Reply> replies, ScrollController controller) {
 }
 }
 
 
 class BottomReplyBar extends StatelessWidget {
 class BottomReplyBar extends StatelessWidget {
-  const BottomReplyBar({Key key, this.pCtx}) : super(key: key);
+  const BottomReplyBar({Key? key, this.pCtx}) : super(key: key);
   final BuildContext pCtx;
   final BuildContext pCtx;
 
 
   @override
   @override

+ 1 - 1
lib/pages/RecommendPage/FriendList.dart

@@ -4,7 +4,7 @@ import 'package:provider/provider.dart';
 import 'package:sticky_headers/sticky_headers.dart';
 import 'package:sticky_headers/sticky_headers.dart';
 
 
 class AtFriendPage extends StatelessWidget {
 class AtFriendPage extends StatelessWidget {
-  const AtFriendPage({Key key}) : super(key: key);
+  const AtFriendPage({Key? key}) : super(key: key);
 
 
   @override
   @override
   Widget build(BuildContext context) {
   Widget build(BuildContext context) {

+ 10 - 10
lib/pages/camera_main.dart

@@ -9,7 +9,7 @@ import 'package:image_gallery_saver/image_gallery_saver.dart';
 import 'package:provider/provider.dart';
 import 'package:provider/provider.dart';
 
 
 class CameraPage extends StatelessWidget {
 class CameraPage extends StatelessWidget {
-  const CameraPage({Key key}) : super(key: key);
+  const CameraPage({Key? key}) : super(key: key);
 
 
   @override
   @override
   Widget build(BuildContext context) {
   Widget build(BuildContext context) {
@@ -24,7 +24,7 @@ class CameraPage extends StatelessWidget {
 }
 }
 
 
 class CameraMain extends StatefulWidget {
 class CameraMain extends StatefulWidget {
-  CameraMain({Key key, @required this.rpx}) : super(key: key);
+  CameraMain({Key? key, required this.rpx}) : super(key: key);
   final double rpx;
   final double rpx;
 
 
   @override
   @override
@@ -286,11 +286,11 @@ class _CameraMainState extends State<CameraMain> {
 
 
 class AnimVideoButton extends StatefulWidget {
 class AnimVideoButton extends StatefulWidget {
   AnimVideoButton(
   AnimVideoButton(
-      {Key key,
-      @required this.outWidth,
-      @required this.innerWidth,
-      @required this.rpx,
-      @required this.provider})
+      {Key? key,
+      required this.outWidth,
+      required this.innerWidth,
+      required this.rpx,
+      required this.provider})
       : super(key: key);
       : super(key: key);
   final double outWidth;
   final double outWidth;
   final double innerWidth;
   final double innerWidth;
@@ -400,7 +400,7 @@ class _AnimVideoButtonState extends State<AnimVideoButton>
 }
 }
 
 
 class ScrollBottomBar extends StatefulWidget {
 class ScrollBottomBar extends StatefulWidget {
-  ScrollBottomBar({Key key, @required this.rpx}) : super(key: key);
+  ScrollBottomBar({Key? key, required this.rpx}) : super(key: key);
   final double rpx;
   final double rpx;
 
 
   _ScrollBottomBarState createState() => _ScrollBottomBarState();
   _ScrollBottomBarState createState() => _ScrollBottomBarState();
@@ -531,7 +531,7 @@ class _ScrollBottomBarState extends State<ScrollBottomBar> {
 
 
 class CircleTakePhoto extends StatelessWidget {
 class CircleTakePhoto extends StatelessWidget {
   const CircleTakePhoto(
   const CircleTakePhoto(
-      {Key key, @required this.outBox, @required this.innerBox})
+      {Key? key, required this.outBox, required this.innerBox})
       : super(key: key);
       : super(key: key);
   final double outBox;
   final double outBox;
   final double innerBox;
   final double innerBox;
@@ -586,7 +586,7 @@ class CircleTakePhoto extends StatelessWidget {
 }
 }
 
 
 class IconWithText extends StatelessWidget {
 class IconWithText extends StatelessWidget {
-  const IconWithText({Key key, @required this.icon, @required this.text})
+  const IconWithText({Key? key, required this.icon, required this.text})
       : super(key: key);
       : super(key: key);
   final Icon icon;
   final Icon icon;
   final String text;
   final String text;

+ 10 - 10
lib/pages/home_page.dart

@@ -2,7 +2,7 @@ import 'package:after_layout/after_layout.dart';
 import 'package:flutter/material.dart';
 import 'package:flutter/material.dart';
 
 
 class HomePage extends StatelessWidget {
 class HomePage extends StatelessWidget {
-  const HomePage({Key key}) : super(key: key);
+  const HomePage({Key? key}) : super(key: key);
 
 
   @override
   @override
   Widget build(BuildContext context) {
   Widget build(BuildContext context) {
@@ -18,7 +18,7 @@ class HomePage extends StatelessWidget {
 }
 }
 
 
 class HomeMain extends StatefulWidget {
 class HomeMain extends StatefulWidget {
-  HomeMain({Key key, @required this.rpx}) : super(key: key);
+  HomeMain({Key? key, required this.rpx}) : super(key: key);
   final double rpx;
   final double rpx;
 
 
   _HomeMainState createState() => _HomeMainState();
   _HomeMainState createState() => _HomeMainState();
@@ -156,10 +156,10 @@ class _HomeMainState extends State<HomeMain> with TickerProviderStateMixin {
 
 
 class TopBarWithCallback extends StatefulWidget {
 class TopBarWithCallback extends StatefulWidget {
   TopBarWithCallback(
   TopBarWithCallback(
-      {Key key,
-      @required this.extraPicHeight,
-      @required this.fitType,
-      @required this.updateHeight})
+      {Key? key,
+      required this.extraPicHeight,
+      required this.fitType,
+      required this.updateHeight})
       : super(key: key);
       : super(key: key);
   final double extraPicHeight;
   final double extraPicHeight;
   final BoxFit fitType;
   final BoxFit fitType;
@@ -191,7 +191,7 @@ class _TopBarWithCallbackState extends State<TopBarWithCallback>
 
 
 class SliverTopBar extends StatelessWidget {
 class SliverTopBar extends StatelessWidget {
   const SliverTopBar(
   const SliverTopBar(
-      {Key key, @required this.extraPicHeight, @required this.fitType})
+      {Key? key, required this.extraPicHeight, required this.fitType})
       : super(key: key);
       : super(key: key);
   final double extraPicHeight;
   final double extraPicHeight;
   final BoxFit fitType;
   final BoxFit fitType;
@@ -383,7 +383,7 @@ class SliverTopBar extends StatelessWidget {
 }
 }
 
 
 class Tag extends StatelessWidget {
 class Tag extends StatelessWidget {
-  const Tag({Key key, @required this.text}) : super(key: key);
+  const Tag({Key? key, required this.text}) : super(key: key);
   final String text;
   final String text;
 
 
   @override
   @override
@@ -402,7 +402,7 @@ class Tag extends StatelessWidget {
 }
 }
 
 
 class NumWithDesc extends StatelessWidget {
 class NumWithDesc extends StatelessWidget {
-  const NumWithDesc({Key key, @required this.numm, @required this.desc})
+  const NumWithDesc({Key? key, required this.numm, required this.desc})
       : super(key: key);
       : super(key: key);
   final String numm;
   final String numm;
   final String desc;
   final String desc;
@@ -435,7 +435,7 @@ class NumWithDesc extends StatelessWidget {
 // import 'package:flutter/material.dart';
 // import 'package:flutter/material.dart';
 
 
 // class SelfHomePage extends StatelessWidget {
 // class SelfHomePage extends StatelessWidget {
-//   const SelfHomePage({Key key}) : super(key: key);
+//   const SelfHomePage({Key? key}) : super(key: key);
 
 
 //   @override
 //   @override
 //   Widget build(BuildContext context) {
 //   Widget build(BuildContext context) {

+ 2 - 2
lib/pages/loadData.dart

@@ -1,7 +1,7 @@
 import 'package:flutter/material.dart';
 import 'package:flutter/material.dart';
 
 
 class LoadDataDemo extends StatelessWidget {
 class LoadDataDemo extends StatelessWidget {
-  const LoadDataDemo({Key key}) : super(key: key);
+  const LoadDataDemo({Key? key}) : super(key: key);
 
 
   @override
   @override
   Widget build(BuildContext context) {
   Widget build(BuildContext context) {
@@ -15,7 +15,7 @@ class LoadDataDemo extends StatelessWidget {
 }
 }
 
 
 class RefreshPage extends StatefulWidget {
 class RefreshPage extends StatefulWidget {
-  RefreshPage({Key key}) : super(key: key);
+  RefreshPage({Key? key}) : super(key: key);
 
 
   @override
   @override
   _RefreshPageState createState() => _RefreshPageState();
   _RefreshPageState createState() => _RefreshPageState();

+ 2 - 2
lib/pages/recommend_page.dart

@@ -10,7 +10,7 @@ import 'package:provider/provider.dart';
 class RecommendPage extends StatelessWidget {
 class RecommendPage extends StatelessWidget {
   final int selIndex;
   final int selIndex;
 
 
-  const RecommendPage({Key key, this.selIndex}) : super(key: key);
+  const RecommendPage({Key? key, this.selIndex}) : super(key: key);
 
 
   @override
   @override
   Widget build(BuildContext context) {
   Widget build(BuildContext context) {
@@ -48,7 +48,7 @@ class RecommendPage extends StatelessWidget {
 }
 }
 
 
 class TopTab extends StatefulWidget {
 class TopTab extends StatefulWidget {
-  TopTab({Key key}) : super(key: key);
+  TopTab({Key? key}) : super(key: key);
 
 
   _TopTabState createState() => _TopTabState();
   _TopTabState createState() => _TopTabState();
 }
 }

+ 2 - 2
lib/pages/same_city_page.dart

@@ -7,7 +7,7 @@ import 'package:provider/provider.dart';
 /// Time       : 04/05/2022 Tuesday
 /// Time       : 04/05/2022 Tuesday
 /// Author     : liuyuqi.gov@msn.cn
 /// Author     : liuyuqi.gov@msn.cn
 class SameCityMain extends StatelessWidget {
 class SameCityMain extends StatelessWidget {
-  const SameCityMain({Key key, this.selIndex}) : super(key: key);
+  const SameCityMain({Key? key, this.selIndex}) : super(key: key);
   final int selIndex;
   final int selIndex;
 
 
   @override
   @override
@@ -87,7 +87,7 @@ class SameCityMain extends StatelessWidget {
 }
 }
 
 
 class WaterFallList extends StatelessWidget {
 class WaterFallList extends StatelessWidget {
-  const WaterFallList({Key key, this.dataList, this.controller})
+  const WaterFallList({Key? key, this.dataList, this.controller})
       : super(key: key);
       : super(key: key);
   final List<PostsModel> dataList;
   final List<PostsModel> dataList;
   final ScrollController controller;
   final ScrollController controller;

+ 1 - 1
lib/pages/splash_page.dart

@@ -2,7 +2,7 @@ import 'package:douyin_demo/routes.dart';
 import 'package:flutter/material.dart';
 import 'package:flutter/material.dart';
 
 
 class SplashPage extends StatefulWidget {
 class SplashPage extends StatefulWidget {
-  const SplashPage({Key key}) : super(key: key);
+  const SplashPage({Key? key}) : super(key: key);
 
 
   @override
   @override
   _SplashPageState createState() => _SplashPageState();
   _SplashPageState createState() => _SplashPageState();

+ 15 - 15
lib/providers/recommend_provider.dart

@@ -150,15 +150,15 @@ class MainInfo {
   bool ifFaved;
   bool ifFaved;
 
 
   MainInfo(
   MainInfo(
-      {this.avatarUrl,
-      this.content,
-      this.favCount,
-      this.replyCount,
-      this.shareCount,
-      this.userName,
-      this.videoPath,
-      this.desc,
-      this.ifFaved});
+      {required this.avatarUrl,
+     required this.content,
+     required this.favCount,
+     required this.replyCount,
+     required this.shareCount,
+     required this.userName,
+     required this.videoPath,
+     required this.desc,
+     required this.ifFaved});
 }
 }
 
 
 class Reply {
 class Reply {
@@ -170,10 +170,10 @@ class Reply {
   List<Reply> afterReplies;
   List<Reply> afterReplies;
 
 
   Reply(
   Reply(
-      {this.ifFaved,
-      this.afterReplies,
-      this.replyContent,
-      this.replyMakerAvatar,
-      this.replyMakerName,
-      this.whenReplied});
+      {required this.ifFaved,
+      required this.afterReplies,
+      required this.replyContent,
+      required this.replyMakerAvatar,
+      required this.replyMakerName,
+      required this.whenReplied});
 }
 }

+ 1 - 1
lib/views/bottom_safebar.dart

@@ -4,7 +4,7 @@ import 'package:flutter/material.dart';
 import 'package:provider/provider.dart';
 import 'package:provider/provider.dart';
 
 
 class BottomSafeBar extends StatelessWidget {
 class BottomSafeBar extends StatelessWidget {
-  const BottomSafeBar({Key key, @required this.selIndex}) : super(key: key);
+  const BottomSafeBar({Key? key, required this.selIndex}) : super(key: key);
   final int selIndex;
   final int selIndex;
 
 
   @override
   @override

+ 1 - 1
lib/views/btn_content.dart

@@ -3,7 +3,7 @@ import 'package:flutter/material.dart';
 import 'package:provider/provider.dart';
 import 'package:provider/provider.dart';
 
 
 class BtnContent extends StatelessWidget {
 class BtnContent extends StatelessWidget {
-  const BtnContent({Key key}) : super(key: key);
+  const BtnContent({Key? key}) : super(key: key);
 
 
   @override
   @override
   Widget build(BuildContext context) {
   Widget build(BuildContext context) {

+ 5 - 5
lib/views/button_list.dart

@@ -7,7 +7,7 @@ import 'package:provider/provider.dart';
 import 'icon_text.dart';
 import 'icon_text.dart';
 
 
 class ButtonList extends StatefulWidget {
 class ButtonList extends StatefulWidget {
-  ButtonList({Key key}) : super(key: key);
+  ButtonList({Key? key}) : super(key: key);
 
 
   _ButtonListState createState() => _ButtonListState();
   _ButtonListState createState() => _ButtonListState();
 }
 }
@@ -19,7 +19,7 @@ class _ButtonListState extends State<ButtonList> {
     RecommendProvider provider = Provider.of<RecommendProvider>(context);
     RecommendProvider provider = Provider.of<RecommendProvider>(context);
     List<IconAnimationStage> stages1 = <IconAnimationStage>[];
     List<IconAnimationStage> stages1 = <IconAnimationStage>[];
     stages1.add(IconAnimationStage(
     stages1.add(IconAnimationStage(
-        color: Colors.grey[100],
+        color: Colors.grey[100]!,
         start: 1.0,
         start: 1.0,
         end: 0.0,
         end: 0.0,
         duration: Duration(milliseconds: 200)));
         duration: Duration(milliseconds: 200)));
@@ -36,12 +36,12 @@ class _ButtonListState extends State<ButtonList> {
 
 
     List<IconAnimationStage> stages2 = <IconAnimationStage>[];
     List<IconAnimationStage> stages2 = <IconAnimationStage>[];
     stages2.add(IconAnimationStage(
     stages2.add(IconAnimationStage(
-        color: Colors.grey[100],
+        color: Colors.grey[100]!,
         start: 1.0,
         start: 1.0,
         end: 1.2,
         end: 1.2,
         duration: Duration(milliseconds: 200)));
         duration: Duration(milliseconds: 200)));
     stages2.add(IconAnimationStage(
     stages2.add(IconAnimationStage(
-        color: Colors.grey[100],
+        color: Colors.grey[100]!,
         start: 1.2,
         start: 1.2,
         end: 1.0,
         end: 1.0,
         duration: Duration(milliseconds: 200)));
         duration: Duration(milliseconds: 200)));
@@ -53,7 +53,7 @@ class _ButtonListState extends State<ButtonList> {
         end: 1.2,
         end: 1.2,
         duration: Duration(milliseconds: 200)));
         duration: Duration(milliseconds: 200)));
     stages3.add(IconAnimationStage(
     stages3.add(IconAnimationStage(
-        color: Colors.grey[100],
+        color: Colors.grey[100]!,
         start: 1.2,
         start: 1.2,
         end: 1.0,
         end: 1.0,
         duration: Duration(milliseconds: 200)));
         duration: Duration(milliseconds: 200)));

+ 1 - 1
lib/views/center_image.dart

@@ -2,7 +2,7 @@
 import 'package:flutter/material.dart';
 import 'package:flutter/material.dart';
 
 
 class CenterImage extends StatelessWidget {
 class CenterImage extends StatelessWidget {
-  const CenterImage({Key key, @required this.videoPath}) : super(key: key);
+  const CenterImage({Key? key, required this.videoPath}) : super(key: key);
   final String videoPath;
   final String videoPath;
 
 
   @override
   @override

+ 1 - 1
lib/views/icon_text.dart

@@ -2,7 +2,7 @@ import 'package:douyin_demo/widgets/FavAnimation.dart';
 import 'package:flutter/material.dart';
 import 'package:flutter/material.dart';
 
 
 class IconText extends StatelessWidget {
 class IconText extends StatelessWidget {
-  const IconText({Key key, this.icon, this.text}) : super(key: key);
+  const IconText({Key? key,required this.icon,required this.text}) : super(key: key);
   final AnimatedIconWidget icon;
   final AnimatedIconWidget icon;
   final String text;
   final String text;
 
 

+ 2 - 2
lib/views/main_tab_view.dart

@@ -7,7 +7,7 @@ import 'package:provider/provider.dart';
 import 'center_image.dart';
 import 'center_image.dart';
 
 
 class MainTabView extends StatelessWidget {
 class MainTabView extends StatelessWidget {
-  const MainTabView({Key key}) : super(key: key);
+  const MainTabView({Key? key}) : super(key: key);
 
 
   @override
   @override
   Widget build(BuildContext context) {
   Widget build(BuildContext context) {
@@ -28,7 +28,7 @@ class MainTabView extends StatelessWidget {
 
 
 /// 自定义滑动tab
 /// 自定义滑动tab
 class SwiperMain extends StatefulWidget {
 class SwiperMain extends StatefulWidget {
-  SwiperMain({Key key, this.type}) : super(key: key);
+  SwiperMain({Key? key, required this.type}) : super(key: key);
   final String type;
   final String type;
 
 
   _SwiperMainState createState() => _SwiperMainState();
   _SwiperMainState createState() => _SwiperMainState();

+ 6 - 7
lib/views/rotate_album.dart

@@ -1,15 +1,14 @@
-
 import 'package:flutter/material.dart';
 import 'package:flutter/material.dart';
 
 
 class RotateAlbum extends StatefulWidget {
 class RotateAlbum extends StatefulWidget {
-  RotateAlbum({Key key}) : super(key: key);
+  RotateAlbum({Key? key}) : super(key: key);
 
 
   _RotateAlbumState createState() => _RotateAlbumState();
   _RotateAlbumState createState() => _RotateAlbumState();
 }
 }
 
 
 class _RotateAlbumState extends State<RotateAlbum>
 class _RotateAlbumState extends State<RotateAlbum>
     with SingleTickerProviderStateMixin {
     with SingleTickerProviderStateMixin {
-  AnimationController _controller;
+  late AnimationController _controller;
   var animation;
   var animation;
 
 
   @override
   @override
@@ -26,9 +25,9 @@ class _RotateAlbumState extends State<RotateAlbum>
         }),
         }),
       child: Container(
       child: Container(
           child: CircleAvatar(
           child: CircleAvatar(
-            backgroundImage: NetworkImage(
-                "https://gss1.bdstatic.com/9vo3dSag_xI4khGkpoWK1HF6hhy/baike/s%3D500/sign=dde475320ee9390152028d3e4bec54f9/d009b3de9c82d1586d8294a38f0a19d8bc3e42a4.jpg"),
-          )),
+        backgroundImage: NetworkImage(
+            "https://gss1.bdstatic.com/9vo3dSag_xI4khGkpoWK1HF6hhy/baike/s%3D500/sign=dde475320ee9390152028d3e4bec54f9/d009b3de9c82d1586d8294a38f0a19d8bc3e42a4.jpg"),
+      )),
     );
     );
     _controller.forward(from: 0.0);
     _controller.forward(from: 0.0);
   }
   }
@@ -46,4 +45,4 @@ class _RotateAlbumState extends State<RotateAlbum>
       child: animation,
       child: animation,
     );
     );
   }
   }
-}
+}

+ 2 - 2
lib/views/swiper_main.dart

@@ -9,7 +9,7 @@ import 'button_list.dart';
 import 'center_image.dart';
 import 'center_image.dart';
 
 
 class SwiperMain extends StatefulWidget {
 class SwiperMain extends StatefulWidget {
-  SwiperMain({Key key, this.type}) : super(key: key);
+  SwiperMain({Key? key, this.type}) : super(key: key);
   final String type;
   final String type;
 
 
   _SwiperMainState createState() => _SwiperMainState();
   _SwiperMainState createState() => _SwiperMainState();
@@ -51,7 +51,7 @@ class _SwiperMainState extends State<SwiperMain>
 }
 }
 
 
 class Home extends StatelessWidget {
 class Home extends StatelessWidget {
-  const Home({Key key}) : super(key: key);
+  const Home({Key? key}) : super(key: key);
 
 
   @override
   @override
   Widget build(BuildContext context) {
   Widget build(BuildContext context) {

+ 1 - 1
lib/views/video_back.dart

@@ -3,7 +3,7 @@ import 'package:flutter/material.dart';
 import 'package:video_player/video_player.dart';
 import 'package:video_player/video_player.dart';
 
 
 class VideoBack extends StatefulWidget {
 class VideoBack extends StatefulWidget {
-  VideoBack({Key key}) : super(key: key);
+  VideoBack({Key? key}) : super(key: key);
 
 
   _VideoBackState createState() => _VideoBackState();
   _VideoBackState createState() => _VideoBackState();
 }
 }

+ 22 - 18
lib/widgets/FavAnimation.dart

@@ -1,7 +1,7 @@
 // import 'package:flutter/material.dart';
 // import 'package:flutter/material.dart';
 
 
 // class AnimateFav extends StatefulWidget {
 // class AnimateFav extends StatefulWidget {
-//   AnimateFav({Key key, this.size}) : super(key: key);
+//   AnimateFav({Key? key, this.size}) : super(key: key);
 //   final double size;
 //   final double size;
 
 
 //   _AnimateFavState createState() => _AnimateFavState();
 //   _AnimateFavState createState() => _AnimateFavState();
@@ -56,7 +56,7 @@
 // }
 // }
 
 
 // class AnimatedUnFav extends StatefulWidget {
 // class AnimatedUnFav extends StatefulWidget {
-//   AnimatedUnFav({Key key,@required this.size}) : super(key: key);
+//   AnimatedUnFav({Key? key,required this.size}) : super(key: key);
 //   final double size;
 //   final double size;
 //   _AnimatedUnFavState createState() => _AnimatedUnFavState();
 //   _AnimatedUnFavState createState() => _AnimatedUnFavState();
 // }
 // }
@@ -116,7 +116,7 @@ import 'package:flutter/material.dart';
 // import 'package:provider/provider.dart';
 // import 'package:provider/provider.dart';
 
 
 // class AnimatePositiveIcon extends StatefulWidget {
 // class AnimatePositiveIcon extends StatefulWidget {
-//   AnimatePositiveIcon({Key key, @required this.size, this.callback})
+//   AnimatePositiveIcon({Key? key, required this.size, this.callback})
 //       : super(key: key);
 //       : super(key: key);
 //   final double size;
 //   final double size;
 //   final VoidCallback callback;
 //   final VoidCallback callback;
@@ -203,11 +203,11 @@ import 'package:flutter/material.dart';
 
 
 // class AnimateNegtiveIcon extends StatefulWidget {
 // class AnimateNegtiveIcon extends StatefulWidget {
 //   AnimateNegtiveIcon(
 //   AnimateNegtiveIcon(
-//       {Key key,
-//       @required this.size,
-//       @required this.icon,
-//       @required this.startColor,
-//       @required this.endColor,
+//       {Key? key,
+//       required this.size,
+//       required this.icon,
+//       required this.startColor,
+//       required this.endColor,
 //       this.callback})
 //       this.callback})
 //       : super(key: key);
 //       : super(key: key);
 //   final double size;
 //   final double size;
@@ -288,13 +288,13 @@ import 'package:flutter/material.dart';
 
 
 class AnimatedIconWidget extends StatefulWidget {
 class AnimatedIconWidget extends StatefulWidget {
   AnimatedIconWidget(
   AnimatedIconWidget(
-      {Key key,
-      @required this.animationList,
-      @required this.icon,
-      @required this.size,
-      this.callback,
+      {Key? key,
+      required this.animationList,
+      required this.icon,
+      required this.size,
+      required this.callback,
       this.callbackDelay,
       this.callbackDelay,
-      this.provider})
+      required this.provider})
       : super(key: key);
       : super(key: key);
   final List<IconAnimationStage> animationList;
   final List<IconAnimationStage> animationList;
   final IconData icon;
   final IconData icon;
@@ -311,11 +311,11 @@ class _AnimatedIconWidgetState extends State<AnimatedIconWidget>
   List<IconAnimationStage> anis = <IconAnimationStage>[];
   List<IconAnimationStage> anis = <IconAnimationStage>[];
   List<AnimationController> controllers = <AnimationController>[];
   List<AnimationController> controllers = <AnimationController>[];
   List<Animation<double>> animations = <Animation<double>>[];
   List<Animation<double>> animations = <Animation<double>>[];
-  Animation<double> curAnim;
-  Color curColor;
+  late Animation<double> curAnim;
+  late Color curColor;
   int curIndex = 0;
   int curIndex = 0;
   List<bool> ifAdded = <bool>[];
   List<bool> ifAdded = <bool>[];
-  double curSize;
+  late double curSize;
   bool ifInit = true;
   bool ifInit = true;
 
 
   loopAnimation(index) {
   loopAnimation(index) {
@@ -401,5 +401,9 @@ class IconAnimationStage {
   Color color;
   Color color;
   Duration duration;
   Duration duration;
 
 
-  IconAnimationStage({this.color, this.duration, this.end, this.start});
+  IconAnimationStage(
+      {required this.color,
+      required this.duration,
+      required this.end,
+      required this.start});
 }
 }

+ 2 - 2
lib/widgets/WebRequest.dart

@@ -4,8 +4,8 @@ import 'package:shared_preferences/shared_preferences.dart';
 
 
 class WebRequest extends Object {
 class WebRequest extends Object {
 
 
-  bool ifPrd;
-  bool ifIos;
+  bool ifPrd=false;
+  bool ifIos=false;
 
 
   Future<Uri> generate(String path, Map<String, dynamic> params) async {
   Future<Uri> generate(String path, Map<String, dynamic> params) async {
     final prefs = await SharedPreferences.getInstance();
     final prefs = await SharedPreferences.getInstance();

+ 2 - 2
lib/widgets/bottom_bar.dart

@@ -7,7 +7,7 @@ import 'package:flutter/material.dart';
 import 'package:provider/provider.dart';
 import 'package:provider/provider.dart';
 
 
 class BtmBar extends StatefulWidget {
 class BtmBar extends StatefulWidget {
-  BtmBar({Key key, this.selectIndex}) : super(key: key);
+  BtmBar({Key? key, this.selectIndex}) : super(key: key);
   final int selectIndex;
   final int selectIndex;
 
 
   _BtmBarState createState() => _BtmBarState();
   _BtmBarState createState() => _BtmBarState();
@@ -153,7 +153,7 @@ getBtmTextWidget(String content, bool ifSelected, tapFunc, double rpx) {
 }
 }
 
 
 class AddIcon extends StatelessWidget {
 class AddIcon extends StatelessWidget {
-  const AddIcon({Key key, @required this.tapItem}) : super(key: key);
+  const AddIcon({Key? key, required this.tapItem}) : super(key: key);
   final VoidCallback tapItem;
   final VoidCallback tapItem;
 
 
   @override
   @override

+ 250 - 140
pubspec.lock

@@ -5,91 +5,136 @@ packages:
     dependency: "direct main"
     dependency: "direct main"
     description:
     description:
       name: after_layout
       name: after_layout
-      url: "https://pub.dartlang.org"
+      sha256: "95a1cb2ca1464f44f14769329fbf15987d20ab6c88f8fc5d359bd362be625f29"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
     version: "1.2.0"
     version: "1.2.0"
   async:
   async:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: async
       name: async
-      url: "https://pub.dartlang.org"
+      sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "2.9.0"
+    version: "2.11.0"
   camera:
   camera:
     dependency: "direct main"
     dependency: "direct main"
     description:
     description:
       name: camera
       name: camera
-      url: "https://pub.dartlang.org"
+      sha256: "89bb02becc33ef3a9e3338efa856823592ff5587fa651bd468f25f3a8fb56ad2"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
     version: "0.5.8+17"
     version: "0.5.8+17"
   characters:
   characters:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: characters
       name: characters
-      url: "https://pub.dartlang.org"
+      sha256: e6a326c8af69605aec75ed6c187d06b349707a27fbff8222ca9cc2cff167975c
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "1.2.0"
+    version: "1.2.1"
   collection:
   collection:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: collection
       name: collection
-      url: "https://pub.dartlang.org"
+      sha256: cfc915e6923fe5ce6e153b0723c753045de46de1b4d63771530504004a45fae0
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "1.16.0"
+    version: "1.17.0"
   cross_file:
   cross_file:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: cross_file
       name: cross_file
-      url: "https://pub.dartlang.org"
+      sha256: "0b0036e8cccbfbe0555fd83c1d31a6f30b77a96b598b35a5d36dd41f718695e9"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "0.3.3+2"
+    version: "0.3.3+4"
   crypto:
   crypto:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: crypto
       name: crypto
-      url: "https://pub.dartlang.org"
+      sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "3.0.2"
+    version: "3.0.3"
   csslib:
   csslib:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: csslib
       name: csslib
-      url: "https://pub.dartlang.org"
+      sha256: "706b5707578e0c1b4b7550f64078f0a0f19dec3f50a178ffae7006b0a9ca58fb"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "0.17.2"
+    version: "1.0.0"
   cupertino_icons:
   cupertino_icons:
     dependency: "direct main"
     dependency: "direct main"
     description:
     description:
       name: cupertino_icons
       name: cupertino_icons
-      url: "https://pub.dartlang.org"
+      sha256: e35129dc44c9118cee2a5603506d823bab99c68393879edb440e0090d07586be
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
     version: "1.0.5"
     version: "1.0.5"
   fading_edge_scrollview:
   fading_edge_scrollview:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: fading_edge_scrollview
       name: fading_edge_scrollview
-      url: "https://pub.dartlang.org"
+      sha256: c25c2231652ce774cc31824d0112f11f653881f43d7f5302c05af11942052031
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
     version: "3.0.0"
     version: "3.0.0"
   ffi:
   ffi:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: ffi
       name: ffi
-      url: "https://pub.dartlang.org"
+      sha256: ed5337a5660c506388a9f012be0288fb38b49020ce2b45fe1f8b8323fe429f99
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "2.0.1"
+    version: "2.0.2"
   file:
   file:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: file
       name: file
-      url: "https://pub.dartlang.org"
+      sha256: "1b92bec4fc2a72f59a8e15af5f52cd441e4a7860b49499d69dfa817af20e925d"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
     version: "6.1.4"
     version: "6.1.4"
+  file_selector_linux:
+    dependency: transitive
+    description:
+      name: file_selector_linux
+      sha256: "770eb1ab057b5ae4326d1c24cc57710758b9a46026349d021d6311bd27580046"
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.9.2"
+  file_selector_macos:
+    dependency: transitive
+    description:
+      name: file_selector_macos
+      sha256: "4ada532862917bf16e3adb3891fe3a5917a58bae03293e497082203a80909412"
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.9.3+1"
+  file_selector_platform_interface:
+    dependency: transitive
+    description:
+      name: file_selector_platform_interface
+      sha256: "412705a646a0ae90f33f37acfae6a0f7cbc02222d6cd34e479421c3e74d3853c"
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "2.6.0"
+  file_selector_windows:
+    dependency: transitive
+    description:
+      name: file_selector_windows
+      sha256: "1372760c6b389842b77156203308940558a2817360154084368608413835fc26"
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.9.3"
   firebase_ml_vision:
   firebase_ml_vision:
     dependency: "direct main"
     dependency: "direct main"
     description:
     description:
       name: firebase_ml_vision
       name: firebase_ml_vision
-      url: "https://pub.dartlang.org"
+      sha256: "6869cad92af07a79ff70a372aa69cc1a3aba2e03e1c12340a8fa025adfc53325"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
     version: "0.9.10"
     version: "0.9.10"
   flutter:
   flutter:
@@ -101,21 +146,24 @@ packages:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: flutter_page_indicator
       name: flutter_page_indicator
-      url: "https://pub.dartlang.org"
+      sha256: a5b2992228c2827b69faed3977681a3f5c313c7f13d72272decbb2923d1d7176
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
     version: "0.0.3"
     version: "0.0.3"
   flutter_plugin_android_lifecycle:
   flutter_plugin_android_lifecycle:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: flutter_plugin_android_lifecycle
       name: flutter_plugin_android_lifecycle
-      url: "https://pub.dartlang.org"
+      sha256: "950e77c2bbe1692bc0874fc7fb491b96a4dc340457f4ea1641443d0a6c1ea360"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "2.0.7"
+    version: "2.0.15"
   flutter_swiper:
   flutter_swiper:
     dependency: "direct main"
     dependency: "direct main"
     description:
     description:
       name: flutter_swiper
       name: flutter_swiper
-      url: "https://pub.dartlang.org"
+      sha256: e52a0e894abfa4099a5d4e5098a00597f3b55e25617cdd19e6fe6be5d24858c7
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
     version: "1.1.6"
     version: "1.1.6"
   flutter_web_plugins:
   flutter_web_plugins:
@@ -127,268 +175,314 @@ packages:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: html
       name: html
-      url: "https://pub.dartlang.org"
+      sha256: "3a7812d5bcd2894edf53dfaf8cd640876cf6cef50a8f238745c8b8120ea74d3a"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "0.15.1"
+    version: "0.15.4"
   http:
   http:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: http
       name: http
-      url: "https://pub.dartlang.org"
+      sha256: "5895291c13fa8a3bd82e76d5627f69e0d85ca6a30dcac95c4ea19a5d555879c2"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "0.13.5"
+    version: "0.13.6"
   http_parser:
   http_parser:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: http_parser
       name: http_parser
-      url: "https://pub.dartlang.org"
+      sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
     version: "4.0.2"
     version: "4.0.2"
   image_gallery_saver:
   image_gallery_saver:
     dependency: "direct main"
     dependency: "direct main"
     description:
     description:
       name: image_gallery_saver
       name: image_gallery_saver
-      url: "https://pub.dartlang.org"
+      sha256: be812580c7a320d3bf583af89cac6b376f170d48000aca75215a73285a3223a0
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
     version: "1.7.1"
     version: "1.7.1"
   image_picker:
   image_picker:
     dependency: "direct main"
     dependency: "direct main"
     description:
     description:
       name: image_picker
       name: image_picker
-      url: "https://pub.dartlang.org"
+      sha256: b6951e25b795d053a6ba03af5f710069c99349de9341af95155d52665cb4607c
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "0.8.6"
+    version: "0.8.9"
   image_picker_android:
   image_picker_android:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: image_picker_android
       name: image_picker_android
-      url: "https://pub.dartlang.org"
+      sha256: "8179b54039b50eee561676232304f487602e2950ffb3e8995ed9034d6505ca34"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "0.8.5+3"
+    version: "0.8.7+4"
   image_picker_for_web:
   image_picker_for_web:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: image_picker_for_web
       name: image_picker_for_web
-      url: "https://pub.dartlang.org"
+      sha256: "869fe8a64771b7afbc99fc433a5f7be2fea4d1cb3d7c11a48b6b579eb9c797f0"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "2.1.10"
+    version: "2.2.0"
   image_picker_ios:
   image_picker_ios:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: image_picker_ios
       name: image_picker_ios
-      url: "https://pub.dartlang.org"
+      sha256: b3e2f21feb28b24dd73a35d7ad6e83f568337c70afab5eabac876e23803f264b
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.8.8"
+  image_picker_linux:
+    dependency: transitive
+    description:
+      name: image_picker_linux
+      sha256: "02cbc21fe1706b97942b575966e5fbbeaac535e76deef70d3a242e4afb857831"
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.2.1"
+  image_picker_macos:
+    dependency: transitive
+    description:
+      name: image_picker_macos
+      sha256: cee2aa86c56780c13af2c77b5f2f72973464db204569e1ba2dd744459a065af4
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "0.8.6+1"
+    version: "0.2.1"
   image_picker_platform_interface:
   image_picker_platform_interface:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: image_picker_platform_interface
       name: image_picker_platform_interface
-      url: "https://pub.dartlang.org"
+      sha256: c1134543ae2187e85299996d21c526b2f403854994026d575ae4cf30d7bb2a32
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "2.6.2"
+    version: "2.9.0"
   image_picker_saver:
   image_picker_saver:
     dependency: "direct main"
     dependency: "direct main"
     description:
     description:
       name: image_picker_saver
       name: image_picker_saver
-      url: "https://pub.dartlang.org"
+      sha256: "30b944c85ec656b252fb81c144204065a4f86741d423cdc86f8019aa71c2e802"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
     version: "0.3.0"
     version: "0.3.0"
+  image_picker_windows:
+    dependency: transitive
+    description:
+      name: image_picker_windows
+      sha256: c3066601ea42113922232c7b7b3330a2d86f029f685bba99d82c30e799914952
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "0.2.1"
   js:
   js:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: js
       name: js
-      url: "https://pub.dartlang.org"
+      sha256: "5528c2f391ededb7775ec1daa69e65a2d61276f7552de2b5f7b8d34ee9fd4ab7"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "0.6.4"
+    version: "0.6.5"
   json_annotation:
   json_annotation:
     dependency: "direct main"
     dependency: "direct main"
     description:
     description:
       name: json_annotation
       name: json_annotation
-      url: "https://pub.dartlang.org"
+      sha256: "6cec7404b25d6338c8cb7b30131cd6c760079a4ec1fa7846c55bdda91f9d2819"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
     version: "3.1.1"
     version: "3.1.1"
   lpinyin:
   lpinyin:
     dependency: "direct main"
     dependency: "direct main"
     description:
     description:
       name: lpinyin
       name: lpinyin
-      url: "https://pub.dartlang.org"
+      sha256: "0bb843363f1f65170efd09fbdfc760c7ec34fc6354f9fcb2f89e74866a0d814a"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
     version: "2.0.3"
     version: "2.0.3"
   marquee:
   marquee:
     dependency: "direct main"
     dependency: "direct main"
     description:
     description:
       name: marquee
       name: marquee
-      url: "https://pub.dartlang.org"
+      sha256: "4b5243d2804373bdc25fc93d42c3b402d6ec1f4ee8d0bb72276edd04ae7addb8"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
     version: "2.2.3"
     version: "2.2.3"
   marquee_flutter:
   marquee_flutter:
     dependency: "direct main"
     dependency: "direct main"
     description:
     description:
       name: marquee_flutter
       name: marquee_flutter
-      url: "https://pub.dartlang.org"
+      sha256: dc7c2a1216eac0bb04af25bafcf66358590b762043eccf69281c18043316bde2
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
     version: "0.1.4"
     version: "0.1.4"
   material_color_utilities:
   material_color_utilities:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: material_color_utilities
       name: material_color_utilities
-      url: "https://pub.dartlang.org"
+      sha256: d92141dc6fe1dad30722f9aa826c7fbc896d021d792f80678280601aff8cf724
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "0.1.4"
+    version: "0.2.0"
   meta:
   meta:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: meta
       name: meta
-      url: "https://pub.dartlang.org"
+      sha256: "6c268b42ed578a53088d834796959e4a1814b5e9e164f147f580a386e5decf42"
+      url: "https://pub.flutter-io.cn"
+    source: hosted
+    version: "1.8.0"
+  mime:
+    dependency: transitive
+    description:
+      name: mime
+      sha256: e4ff8e8564c03f255408decd16e7899da1733852a9110a58fe6d1b817684a63e
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "1.7.0"
+    version: "1.0.4"
   nested:
   nested:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: nested
       name: nested
-      url: "https://pub.dartlang.org"
+      sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
     version: "1.0.0"
     version: "1.0.0"
   path:
   path:
     dependency: "direct main"
     dependency: "direct main"
     description:
     description:
       name: path
       name: path
-      url: "https://pub.dartlang.org"
+      sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "1.8.2"
+    version: "1.8.3"
   path_provider:
   path_provider:
     dependency: "direct main"
     dependency: "direct main"
     description:
     description:
       name: path_provider
       name: path_provider
-      url: "https://pub.dartlang.org"
+      sha256: "3087813781ab814e4157b172f1a11c46be20179fcc9bea043e0fba36bc0acaa2"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "2.0.11"
+    version: "2.0.15"
   path_provider_android:
   path_provider_android:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: path_provider_android
       name: path_provider_android
-      url: "https://pub.dartlang.org"
+      sha256: "2cec049d282c7f13c594b4a73976b0b4f2d7a1838a6dd5aaf7bd9719196bee86"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "2.0.20"
-  path_provider_ios:
+    version: "2.0.27"
+  path_provider_foundation:
     dependency: transitive
     dependency: transitive
     description:
     description:
-      name: path_provider_ios
-      url: "https://pub.dartlang.org"
+      name: path_provider_foundation
+      sha256: "916731ccbdce44d545414dd9961f26ba5fbaa74bcbb55237d8e65a623a8c7297"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "2.0.11"
+    version: "2.2.4"
   path_provider_linux:
   path_provider_linux:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: path_provider_linux
       name: path_provider_linux
-      url: "https://pub.dartlang.org"
-    source: hosted
-    version: "2.1.7"
-  path_provider_macos:
-    dependency: transitive
-    description:
-      name: path_provider_macos
-      url: "https://pub.dartlang.org"
+      sha256: ffbb8cc9ed2c9ec0e4b7a541e56fd79b138e8f47d2fb86815f15358a349b3b57
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "2.0.6"
+    version: "2.1.11"
   path_provider_platform_interface:
   path_provider_platform_interface:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: path_provider_platform_interface
       name: path_provider_platform_interface
-      url: "https://pub.dartlang.org"
+      sha256: "57585299a729335f1298b43245842678cb9f43a6310351b18fb577d6e33165ec"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "2.0.5"
+    version: "2.0.6"
   path_provider_windows:
   path_provider_windows:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: path_provider_windows
       name: path_provider_windows
-      url: "https://pub.dartlang.org"
+      sha256: "1cb68ba4cd3a795033de62ba1b7b4564dace301f952de6bfb3cd91b202b6ee96"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "2.1.3"
+    version: "2.1.7"
   platform:
   platform:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: platform
       name: platform
-      url: "https://pub.dartlang.org"
+      sha256: "4a451831508d7d6ca779f7ac6e212b4023dd5a7d08a27a63da33756410e32b76"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
     version: "3.1.0"
     version: "3.1.0"
   plugin_platform_interface:
   plugin_platform_interface:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: plugin_platform_interface
       name: plugin_platform_interface
-      url: "https://pub.dartlang.org"
-    source: hosted
-    version: "2.1.3"
-  process:
-    dependency: transitive
-    description:
-      name: process
-      url: "https://pub.dartlang.org"
+      sha256: "43798d895c929056255600343db8f049921cbec94d31ec87f1dc5c16c01935dd"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "4.2.4"
+    version: "2.1.5"
   provider:
   provider:
     dependency: "direct main"
     dependency: "direct main"
     description:
     description:
       name: provider
       name: provider
-      url: "https://pub.dartlang.org"
+      sha256: cdbe7530b12ecd9eb455bdaa2fcb8d4dad22e80b8afb4798b41479d5ce26847f
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "6.0.4"
+    version: "6.0.5"
   shared_preferences:
   shared_preferences:
     dependency: "direct main"
     dependency: "direct main"
     description:
     description:
       name: shared_preferences
       name: shared_preferences
-      url: "https://pub.dartlang.org"
+      sha256: "0344316c947ffeb3a529eac929e1978fcd37c26be4e8468628bac399365a3ca1"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "2.0.15"
+    version: "2.2.0"
   shared_preferences_android:
   shared_preferences_android:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: shared_preferences_android
       name: shared_preferences_android
-      url: "https://pub.dartlang.org"
+      sha256: fe8401ec5b6dcd739a0fe9588802069e608c3fdbfd3c3c93e546cf2f90438076
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "2.0.14"
-  shared_preferences_ios:
+    version: "2.2.0"
+  shared_preferences_foundation:
     dependency: transitive
     dependency: transitive
     description:
     description:
-      name: shared_preferences_ios
-      url: "https://pub.dartlang.org"
+      name: shared_preferences_foundation
+      sha256: f39696b83e844923b642ce9dd4bd31736c17e697f6731a5adf445b1274cf3cd4
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "2.1.1"
+    version: "2.3.2"
   shared_preferences_linux:
   shared_preferences_linux:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: shared_preferences_linux
       name: shared_preferences_linux
-      url: "https://pub.dartlang.org"
+      sha256: "71d6806d1449b0a9d4e85e0c7a917771e672a3d5dc61149cc9fac871115018e1"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "2.1.1"
-  shared_preferences_macos:
-    dependency: transitive
-    description:
-      name: shared_preferences_macos
-      url: "https://pub.dartlang.org"
-    source: hosted
-    version: "2.0.4"
+    version: "2.3.0"
   shared_preferences_platform_interface:
   shared_preferences_platform_interface:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: shared_preferences_platform_interface
       name: shared_preferences_platform_interface
-      url: "https://pub.dartlang.org"
+      sha256: "23b052f17a25b90ff2b61aad4cc962154da76fb62848a9ce088efe30d7c50ab1"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "2.1.0"
+    version: "2.3.0"
   shared_preferences_web:
   shared_preferences_web:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: shared_preferences_web
       name: shared_preferences_web
-      url: "https://pub.dartlang.org"
+      sha256: "7347b194fb0bbeb4058e6a4e87ee70350b6b2b90f8ac5f8bd5b3a01548f6d33a"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "2.0.4"
+    version: "2.2.0"
   shared_preferences_windows:
   shared_preferences_windows:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: shared_preferences_windows
       name: shared_preferences_windows
-      url: "https://pub.dartlang.org"
+      sha256: f95e6a43162bce43c9c3405f3eb6f39e5b5d11f65fab19196cf8225e2777624d
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "2.1.1"
+    version: "2.3.0"
   sky_engine:
   sky_engine:
     dependency: transitive
     dependency: transitive
     description: flutter
     description: flutter
@@ -398,114 +492,130 @@ packages:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: source_span
       name: source_span
-      url: "https://pub.dartlang.org"
+      sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "1.9.1"
+    version: "1.10.0"
   sticky_headers:
   sticky_headers:
     dependency: "direct main"
     dependency: "direct main"
     description:
     description:
       name: sticky_headers
       name: sticky_headers
-      url: "https://pub.dartlang.org"
+      sha256: "141637200483aeb6f792fc1a14f8798397e3e52fa33d2725e451d6998aefec7f"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
     version: "0.1.8+1"
     version: "0.1.8+1"
   stretchy_header:
   stretchy_header:
     dependency: "direct main"
     dependency: "direct main"
     description:
     description:
       name: stretchy_header
       name: stretchy_header
-      url: "https://pub.dartlang.org"
+      sha256: "4073e0a7c3aa41aa6ae57185c2fae00c2cd66adc536593de8742d86979a56d35"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
     version: "2.0.0"
     version: "2.0.0"
   string_scanner:
   string_scanner:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: string_scanner
       name: string_scanner
-      url: "https://pub.dartlang.org"
+      sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "1.1.1"
+    version: "1.2.0"
   term_glyph:
   term_glyph:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: term_glyph
       name: term_glyph
-      url: "https://pub.dartlang.org"
+      sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
     version: "1.2.1"
     version: "1.2.1"
   transformer_page_view:
   transformer_page_view:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: transformer_page_view
       name: transformer_page_view
-      url: "https://pub.dartlang.org"
+      sha256: "2210531bc4148831061c575070173f32693415be8bbbf5bd2159a38f2adff61c"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
     version: "0.1.6"
     version: "0.1.6"
   typed_data:
   typed_data:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: typed_data
       name: typed_data
-      url: "https://pub.dartlang.org"
+      sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "1.3.1"
+    version: "1.3.2"
   uuid:
   uuid:
     dependency: "direct main"
     dependency: "direct main"
     description:
     description:
       name: uuid
       name: uuid
-      url: "https://pub.dartlang.org"
+      sha256: "648e103079f7c64a36dc7d39369cabb358d377078a051d6ae2ad3aa539519313"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "3.0.6"
+    version: "3.0.7"
   vector_math:
   vector_math:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: vector_math
       name: vector_math
-      url: "https://pub.dartlang.org"
+      sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "2.1.2"
+    version: "2.1.4"
   video_player:
   video_player:
     dependency: "direct main"
     dependency: "direct main"
     description:
     description:
       name: video_player
       name: video_player
-      url: "https://pub.dartlang.org"
+      sha256: "3fd106c74da32f336dc7feb65021da9b0207cb3124392935f1552834f7cce822"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "2.4.7"
+    version: "2.7.0"
   video_player_android:
   video_player_android:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: video_player_android
       name: video_player_android
-      url: "https://pub.dartlang.org"
+      sha256: f338a5a396c845f4632959511cad3542cdf3167e1b2a1a948ef07f7123c03608
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "2.3.9"
+    version: "2.4.9"
   video_player_avfoundation:
   video_player_avfoundation:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: video_player_avfoundation
       name: video_player_avfoundation
-      url: "https://pub.dartlang.org"
+      sha256: f5f5b7fe8c865be8a57fe80c2dca130772e1db775b7af4e5c5aa1905069cfc6c
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "2.3.7"
+    version: "2.4.9"
   video_player_platform_interface:
   video_player_platform_interface:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: video_player_platform_interface
       name: video_player_platform_interface
-      url: "https://pub.dartlang.org"
+      sha256: "1ca9acd7a0fb15fb1a990cb554e6f004465c6f37c99d2285766f08a4b2802988"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "5.1.4"
+    version: "6.2.0"
   video_player_web:
   video_player_web:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: video_player_web
       name: video_player_web
-      url: "https://pub.dartlang.org"
+      sha256: "44ce41424d104dfb7cf6982cc6b84af2b007a24d126406025bf40de5d481c74c"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "2.0.12"
+    version: "2.0.16"
   win32:
   win32:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: win32
       name: win32
-      url: "https://pub.dartlang.org"
+      sha256: "5a751eddf9db89b3e5f9d50c20ab8612296e4e8db69009788d6c8b060a84191c"
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "3.0.1"
+    version: "4.1.4"
   xdg_directories:
   xdg_directories:
     dependency: transitive
     dependency: transitive
     description:
     description:
       name: xdg_directories
       name: xdg_directories
-      url: "https://pub.dartlang.org"
+      sha256: e0b1147eec179d3911f1f19b59206448f78195ca1d20514134e10641b7d7fbff
+      url: "https://pub.flutter-io.cn"
     source: hosted
     source: hosted
-    version: "0.2.0+2"
+    version: "1.0.1"
 sdks:
 sdks:
-  dart: ">=2.17.0 <3.0.0"
-  flutter: ">=3.0.0"
+  dart: ">=2.19.2 <3.0.0"
+  flutter: ">=3.3.0"

+ 3 - 3
pubspec.yaml

@@ -3,20 +3,20 @@ description: A new Flutter project.
 version: 1.0.0+1
 version: 1.0.0+1
 
 
 environment:
 environment:
-  sdk: ">=2.7.0 <3.0.0"
+  sdk: '>=2.19.2 <3.0.0'
 
 
 dependencies:
 dependencies:
   flutter:
   flutter:
     sdk: flutter
     sdk: flutter
 
 
-  cupertino_icons: ^1.0.3
+  cupertino_icons: ^1.0.5
   marquee: ^2.2.1
   marquee: ^2.2.1
   video_player: ^2.1.15
   video_player: ^2.1.15
   marquee_flutter: ^0.1.4
   marquee_flutter: ^0.1.4
   provider: ^6.0.1
   provider: ^6.0.1
   lpinyin: ^2.0.3
   lpinyin: ^2.0.3
   sticky_headers: ^0.1.8
   sticky_headers: ^0.1.8
-  shared_preferences: ^2.0.7
+  shared_preferences: ^2.2.0
   json_annotation: ^3.1.1
   json_annotation: ^3.1.1
   flutter_swiper: ^1.1.6
   flutter_swiper: ^1.1.6
   stretchy_header: ^2.0.0
   stretchy_header: ^2.0.0

Some files were not shown because too many files changed in this diff