diff --git a/assets/coin_big_bg.png b/assets/coin_big_bg.png new file mode 100644 index 0000000..672264e Binary files /dev/null and b/assets/coin_big_bg.png differ diff --git a/assets/coin_small_bg.png b/assets/coin_small_bg.png new file mode 100644 index 0000000..989dfcb Binary files /dev/null and b/assets/coin_small_bg.png differ diff --git a/assets/full_access.png b/assets/full_access.png new file mode 100644 index 0000000..d31b0bc Binary files /dev/null and b/assets/full_access.png differ diff --git a/assets/ic_coin.png b/assets/ic_coin.png new file mode 100644 index 0000000..671f34d Binary files /dev/null and b/assets/ic_coin.png differ diff --git a/assets/ic_hd.png b/assets/ic_hd.png new file mode 100644 index 0000000..79b52e6 Binary files /dev/null and b/assets/ic_hd.png differ diff --git a/assets/mine_vip_bg.png b/assets/mine_vip_bg.png new file mode 100644 index 0000000..03bc584 Binary files /dev/null and b/assets/mine_vip_bg.png differ diff --git a/assets/no_ad.png b/assets/no_ad.png new file mode 100644 index 0000000..4c11890 Binary files /dev/null and b/assets/no_ad.png differ diff --git a/assets/vip_month_bg.png b/assets/vip_month_bg.png new file mode 100644 index 0000000..7aa7f0d Binary files /dev/null and b/assets/vip_month_bg.png differ diff --git a/assets/vip_quarter_bg.png b/assets/vip_quarter_bg.png new file mode 100644 index 0000000..11b3327 Binary files /dev/null and b/assets/vip_quarter_bg.png differ diff --git a/assets/vip_week_bg.png b/assets/vip_week_bg.png new file mode 100644 index 0000000..3117d16 Binary files /dev/null and b/assets/vip_week_bg.png differ diff --git a/assets/vip_year_bg.png b/assets/vip_year_bg.png new file mode 100644 index 0000000..f39ce63 Binary files /dev/null and b/assets/vip_year_bg.png differ diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj index 46742f7..958332a 100644 --- a/ios/Runner.xcodeproj/project.pbxproj +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -489,14 +489,14 @@ CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES; CLANG_ENABLE_MODULES = YES; CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; - DEVELOPMENT_TEAM = 38X8FL2527; + DEVELOPMENT_TEAM = R2HNUU3JZL; ENABLE_BITCODE = NO; INFOPLIST_FILE = Runner/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = com.kinetra.adehok.app.flutterKinetra; + PRODUCT_BUNDLE_IDENTIFIER = com.kinetra.adehok.app; PRODUCT_NAME = "$(TARGET_NAME)"; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SUPPORTS_MACCATALYST = NO; @@ -678,14 +678,14 @@ CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES; CLANG_ENABLE_MODULES = YES; CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; - DEVELOPMENT_TEAM = 38X8FL2527; + DEVELOPMENT_TEAM = R2HNUU3JZL; ENABLE_BITCODE = NO; INFOPLIST_FILE = Runner/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = com.kinetra.adehok.app.flutterKinetra; + PRODUCT_BUNDLE_IDENTIFIER = com.kinetra.adehok.app; PRODUCT_NAME = "$(TARGET_NAME)"; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SUPPORTS_MACCATALYST = NO; @@ -707,14 +707,14 @@ CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES; CLANG_ENABLE_MODULES = YES; CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; - DEVELOPMENT_TEAM = 38X8FL2527; + DEVELOPMENT_TEAM = R2HNUU3JZL; ENABLE_BITCODE = NO; INFOPLIST_FILE = Runner/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = com.kinetra.adehok.app.flutterKinetra; + PRODUCT_BUNDLE_IDENTIFIER = com.kinetra.adehok.app; PRODUCT_NAME = "$(TARGET_NAME)"; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SUPPORTS_MACCATALYST = NO; diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist index caae079..b5e717a 100644 --- a/ios/Runner/Info.plist +++ b/ios/Runner/Info.plist @@ -7,7 +7,7 @@ CFBundleDevelopmentRegion $(DEVELOPMENT_LANGUAGE) CFBundleDisplayName - Flutter Kinetra + Kinetra CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIdentifier @@ -15,7 +15,7 @@ CFBundleInfoDictionaryVersion 6.0 CFBundleName - flutter_kinetra + Kinetra CFBundlePackageType APPL CFBundleShortVersionString diff --git a/lib/kt_pages/kt_actor/kt_actor_detail_page.dart b/lib/kt_pages/kt_actor/kt_actor_detail_page.dart new file mode 100644 index 0000000..7af9056 --- /dev/null +++ b/lib/kt_pages/kt_actor/kt_actor_detail_page.dart @@ -0,0 +1,309 @@ +import 'dart:math'; + +import 'package:flutter/material.dart'; +import 'package:flutter_kinetra/kt_utils/kt_string_extend.dart'; +import 'package:flutter_screenutil/flutter_screenutil.dart'; +import 'package:get/get.dart'; +import 'package:pull_to_refresh/pull_to_refresh.dart'; + +import '../../dio_cilent/kt_apis.dart'; +import '../../dio_cilent/kt_request.dart'; +import '../../kt_model/kt_short_video_bean.dart'; +import '../../kt_widgets/kt_network_image.dart'; +import '../kt_routes.dart'; + +class KtActorDetailPage extends StatefulWidget { + final Map actor; + const KtActorDetailPage({super.key, required this.actor}); + + @override + State createState() => _KtActorDetailPageState(); +} + +class _KtActorDetailPageState extends State { + int pageNo = 1; + int pageSize = 10; + final refreshCtrl = RefreshController(); + List videoList = []; + @override + Widget build(BuildContext context) { + return Container( + width: ScreenUtil().screenWidth, + height: ScreenUtil().screenHeight, + padding: EdgeInsets.only(top: kToolbarHeight, left: 15.w, right: 15.w), + decoration: BoxDecoration( + image: DecorationImage( + image: AssetImage('bg1.png'.ktIcon), + fit: BoxFit.fill, + ), + ), + child: Column( + children: [ + Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + GestureDetector( + onTap: () => Navigator.of(context).maybePop(), + child: Image.asset('ic_back.png'.ktIcon, width: 10.w), + ), + Text( + 'Actor Details', + style: TextStyle( + fontSize: 16.sp, + fontWeight: FontWeight.w700, + color: Colors.black, + ), + ), + Container(width: 24.w), + ], + ), + SizedBox(height: 20.w), + Expanded( + child: SmartRefresher( + controller: refreshCtrl, + enablePullUp: false, + enablePullDown: true, + onRefresh: fetchData, + child: SingleChildScrollView( + child: Column( + children: [ + actorInfoView(), + SizedBox(height: 10.w), + ListView.separated( + padding: EdgeInsets.only(bottom: kBottomNavigationBarHeight), + shrinkWrap: true, + physics: NeverScrollableScrollPhysics(), + itemCount: videoList.length, + itemBuilder: (BuildContext context, int index) { + KtShortVideoBean video = videoList[index]; + return GestureDetector( + onTap: () => Get.toNamed( + KtRoutes.shortVideo, + arguments: { + 'shortPlayId': video.shortPlayId, + 'imageUrl': video.imageUrl ?? '', + }, + ), + child: Container( + width: ScreenUtil().screenWidth - 30.w, + padding: EdgeInsets.all(10.w), + decoration: BoxDecoration( + color: Colors.white, + borderRadius: BorderRadius.circular(14.w), + ), + child: Row( + children: [ + KtNetworkImage( + imageUrl: video.imageUrl ?? '', + width: 100.w, + height: 127.w, + borderRadius: BorderRadius.circular(12.w), + ), + SizedBox(width: 12.w), + SizedBox( + width: 200.w, + height: 127.w, + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + Text( + video.name ?? '', + maxLines: 1, + overflow: TextOverflow.ellipsis, + style: TextStyle( + fontSize: 14.sp, + fontWeight: FontWeight.w500, + color: Color(0xFF1E1E20), + ), + ), + Text( + video.categoryList?.first.name ?? '', + maxLines: 1, + overflow: TextOverflow.ellipsis, + style: TextStyle( + fontSize: 12.sp, + fontWeight: FontWeight.w400, + color: Color(0xFF79C900), + ), + ), + Text( + video.description ?? '', + maxLines: 2, + overflow: TextOverflow.ellipsis, + style: TextStyle( + fontSize: 10.sp, + fontWeight: FontWeight.w400, + color: Color(0xFF5E5E5E), + ), + ), + + Row( + children: [ + Container( + padding: EdgeInsets.symmetric( + horizontal: 14.w, + vertical: 7.w, + ), + decoration: BoxDecoration( + color: Color(0xFF1E1E20), + borderRadius: BorderRadius.circular( + 100, + ), + ), + child: Row( + children: [ + Image.asset( + 'ic_top_play.png'.ktIcon, + width: 16.w, + ), + SizedBox(width: 4.w), + Text( + 'Play', + style: TextStyle( + fontSize: 12.sp, + fontWeight: FontWeight.w500, + color: Color(0xFFA7F62F), + ), + ), + ], + ), + ), + ], + ), + ], + ), + ), + ], + ), + ), + ); + }, + separatorBuilder: (_, __) => SizedBox(height: 10.w), + ), + ], + ), + ), + ), + ), + + ], + ), + ); + } + + actorInfoView() { + return Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Row( + children: [ + KtNetworkImage( + imageUrl: widget.actor['avatar'], + width: 60.w, + height: 60.w, + borderRadius: BorderRadius.circular(100.w), + ), + SizedBox(width: 10.w), + SizedBox( + height: 60.w, + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Text( + widget.actor['name'], + maxLines: 1, + overflow: TextOverflow.ellipsis, + style: TextStyle( + fontSize: 18.sp, + color: Color(0xFF1E1E20), + fontWeight: FontWeight.w500, + ), + ), + widget.actor['gender'] == 'male' + ? Icon(Icons.male_sharp, size: 20.w, color: Colors.blue) + : Icon( + Icons.female_sharp, + size: 20.w, + color: Colors.pink, + ), + ], + ), + ), + ], + ), + SizedBox(height: 8.w), + Text( + 'Information', + style: TextStyle( + fontSize: 16.sp, + color: Color(0xFF1E1E20), + fontWeight: FontWeight.w600, + ), + ), + SizedBox(height: 8.w), + Container( + padding: EdgeInsets.all(8.w), + decoration: BoxDecoration( + color: Colors.white, + borderRadius: BorderRadius.circular(12.w) + ), + child: Text( + widget.actor['intro'], + style: TextStyle( + fontSize: 12.sp, + color: Color(0xFF1E1E20), + fontWeight: FontWeight.w400, + ), + ), + ), + SizedBox(height: 20.w), + Text( + 'Dramas', + style: TextStyle( + fontSize: 16.sp, + color: Color(0xFF1E1E20), + fontWeight: FontWeight.w600, + ), + ), + ], + ); + } + + @override + void initState() { + super.initState();Random random = Random(); + pageNo = random.nextInt(3); + pageSize = random.nextInt(5) + 10; + fetchData(); + } + + fetchData() async { + videoList.clear(); + + Map params = { + 'current_page': pageNo, + 'page_size': pageSize + }; + + ApiResponse res = await KtHttpClient().request( + KtApis.homeVideoList, + method: HttpMethod.get, + queryParameters: params, + ); + refreshCtrl.refreshCompleted(); + if (res.success) { + List list = [ + ...res.data['list'] + .map( + (item) => KtShortVideoBean.fromJson(item as Map), + ) + .toList(), + ]; + + videoList.addAll(list); + setState(() {}); + } + } +} diff --git a/lib/kt_pages/kt_actor/kt_actor_page.dart b/lib/kt_pages/kt_actor/kt_actor_page.dart index 4903b19..138b521 100644 --- a/lib/kt_pages/kt_actor/kt_actor_page.dart +++ b/lib/kt_pages/kt_actor/kt_actor_page.dart @@ -1,4 +1,11 @@ import 'package:flutter/material.dart'; +import 'package:flutter_kinetra/kt_pages/kt_actor/kt_actor_detail_page.dart'; +import 'package:flutter_kinetra/kt_utils/kt_string_extend.dart'; +import 'package:flutter_screenutil/flutter_screenutil.dart'; +import 'package:get/get.dart'; +import 'package:pull_to_refresh/pull_to_refresh.dart'; + +import '../../kt_widgets/kt_network_image.dart'; class KtActorPage extends StatefulWidget { const KtActorPage({super.key}); @@ -8,86 +15,480 @@ class KtActorPage extends StatefulWidget { } class _KtActorPageState extends State { - List actorList = [ + final refreshCtrl = RefreshController(); + + @override + Widget build(BuildContext context) { + return Container( + width: ScreenUtil().screenWidth, + height: ScreenUtil().screenHeight, + padding: EdgeInsets.only(top: kToolbarHeight, left: 15.w, right: 15.w), + decoration: BoxDecoration( + image: DecorationImage( + image: AssetImage('bg1.png'.ktIcon), + fit: BoxFit.fill, + ), + ), + child: Column( + children: [ + Text( + 'Actor', + style: TextStyle( + fontSize: 18.sp, + color: Colors.black, + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ), + ), + SizedBox(height: 10.w), + rankView(), + SizedBox(height: 10.w), + Expanded( + child: SmartRefresher( + controller: refreshCtrl, + enablePullUp: false, + enablePullDown: true, + onRefresh: fetchData, + child: ListView.separated( + padding:EdgeInsets.only(bottom: kBottomNavigationBarHeight), + shrinkWrap: true, + physics: ClampingScrollPhysics(), + itemBuilder: (context, index) => actorItem(index + 3), + separatorBuilder: (_, __) => SizedBox(height: 15.w), + itemCount: actorList.length - 3, + ), + ), + ), + ], + ), + ); + } + + Widget rankView() { + return Row( + mainAxisAlignment: MainAxisAlignment.center, + crossAxisAlignment: CrossAxisAlignment.end, + children: [ + GestureDetector( + onTap: () => Get.to(KtActorDetailPage(actor: actorList[1])), + child: Column( + children: [ + Container( + width: 90.w, + height: 90.w, + decoration: BoxDecoration( + border: Border.all(width: 2.w, color: Color(0xFFCDC5BF)), + borderRadius: BorderRadius.circular(100), + ), + child: KtNetworkImage( + imageUrl: actorList[1]['avatar'], + borderRadius: BorderRadius.circular(100.w), + ), + ), + Container( + width: 90.w, + height: 58.w, + margin: EdgeInsets.only(top: 6.w), + alignment: Alignment.center, + decoration: BoxDecoration( + gradient: LinearGradient( + begin: Alignment.topCenter, + end: Alignment.bottomCenter, + colors: [ + Color(0xFFCDC5BF), + Color(0xFFCDC5BF).withValues(alpha: 0), + ], + ), + borderRadius: BorderRadius.vertical( + top: Radius.circular(12.w), + ), + ), + child: Container( + width: 33.w, + height: 33.w, + alignment: Alignment.center, + decoration: BoxDecoration( + image: DecorationImage( + image: AssetImage('top_2.png'.ktIcon), + fit: BoxFit.fill, + ), + ), + child: Text( + '2', + style: TextStyle( + fontSize: 16.sp, + color: Colors.black, + fontStyle: FontStyle.italic, + fontWeight: FontWeight.bold, + ), + ), + ), + ), + SizedBox( + width: 90.w, + child: Text( + actorList[1]['name'], + textAlign: TextAlign.center, + maxLines: 1, + overflow: TextOverflow.ellipsis, + style: TextStyle( + fontSize: 12.sp, + color: Colors.black, + fontWeight: FontWeight.w600, + ), + ), + ), + ], + ), + ), + SizedBox(width: 10.w), + GestureDetector( + onTap: () => Get.to(KtActorDetailPage(actor: actorList[0])), + child: Column( + children: [ + Container( + width: 100.w, + height: 100.w, + decoration: BoxDecoration( + border: Border.all(width: 2.w, color: Color(0xFFFFC125)), + borderRadius: BorderRadius.circular(100), + ), + child: KtNetworkImage( + imageUrl: actorList[0]['avatar'], + borderRadius: BorderRadius.circular(100.w), + ), + ), + Container( + width: 100.w, + height: 78.w, + margin: EdgeInsets.only(top: 6.w), + alignment: Alignment.center, + decoration: BoxDecoration( + gradient: LinearGradient( + begin: Alignment.topCenter, + end: Alignment.bottomCenter, + colors: [ + Color(0xFFFFC125), + Color(0xFFFFC125).withValues(alpha: 0), + ], + ), + borderRadius: BorderRadius.vertical( + top: Radius.circular(12.w), + ), + ), + child: Container( + width: 44.w, + height: 44.w, + alignment: Alignment.center, + decoration: BoxDecoration( + image: DecorationImage( + image: AssetImage('top_1.png'.ktIcon), + fit: BoxFit.fill, + ), + ), + child: Text( + '1', + style: TextStyle( + fontSize: 18.sp, + color: Colors.black, + fontStyle: FontStyle.italic, + fontWeight: FontWeight.bold, + ), + ), + ), + ), + SizedBox( + width: 100.w, + child: Text( + actorList[0]['name'], + textAlign: TextAlign.center, + maxLines: 1, + overflow: TextOverflow.ellipsis, + style: TextStyle( + fontSize: 12.sp, + color: Colors.black, + fontWeight: FontWeight.w600, + ), + ), + ), + ], + ), + ), + SizedBox(width: 10.w), + GestureDetector( + onTap: () => Get.to(KtActorDetailPage(actor: actorList[2])), + child: Column( + children: [ + Container( + width: 80.w, + height: 80.w, + decoration: BoxDecoration( + border: Border.all(width: 2.w, color: Color(0xFF79C900)), + borderRadius: BorderRadius.circular(100), + ), + child: KtNetworkImage( + imageUrl: actorList[2]['avatar'], + borderRadius: BorderRadius.circular(100.w), + ), + ), + Container( + width: 80.w, + height: 48.w, + margin: EdgeInsets.only(top: 6.w), + alignment: Alignment.center, + decoration: BoxDecoration( + gradient: LinearGradient( + begin: Alignment.topCenter, + end: Alignment.bottomCenter, + colors: [ + Color(0xFF79C900), + Color(0xFF79C900).withValues(alpha: 0), + ], + ), + borderRadius: BorderRadius.vertical( + top: Radius.circular(12.w), + ), + ), + child: Container( + width: 33.w, + height: 33.w, + alignment: Alignment.center, + decoration: BoxDecoration( + image: DecorationImage( + image: AssetImage('top_3.png'.ktIcon), + fit: BoxFit.fill, + ), + ), + child: Text( + '3', + style: TextStyle( + fontSize: 14.sp, + color: Colors.black, + fontStyle: FontStyle.italic, + fontWeight: FontWeight.bold, + ), + ), + ), + ), + SizedBox( + width: 70.w, + child: Text( + actorList[2]['name'], + textAlign: TextAlign.center, + maxLines: 1, + overflow: TextOverflow.ellipsis, + style: TextStyle( + fontSize: 12.sp, + color: Colors.black, + fontWeight: FontWeight.w600, + ), + ), + ), + ], + ), + ), + ], + ); + } + + Widget actorItem(int index) { + Map actor = actorList[index]; + return GestureDetector( + onTap: () => Get.to(KtActorDetailPage(actor: actor)), + child: Container( + width: ScreenUtil().screenWidth - 30.w, + padding: EdgeInsets.symmetric(horizontal: 8.w, vertical: 6.w), + decoration: BoxDecoration( + color: Colors.white, + borderRadius: BorderRadius.circular(12.w), + ), + child: Row( + children: [ + Stack( + children: [ + KtNetworkImage( + imageUrl: actor['avatar'], + width: 100.w, + height: 133.w, + borderRadius: BorderRadius.circular(12.w), + ), + Container( + width: 24.w, + height: 24.w, + margin: EdgeInsets.only(left: 4.w, top: 4.w), + alignment: Alignment.center, + decoration: BoxDecoration( + image: DecorationImage( + image: AssetImage('top_other.png'.ktIcon), + fit: BoxFit.fill, + ), + ), + child: Text( + '${index + 1}', + style: TextStyle( + fontSize: 12.sp, + color: Colors.black, + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ), + ), + ), + ], + ), + SizedBox(width: 10.w), + SizedBox( + height: 133.w, + width: 200.w, + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + mainAxisAlignment: MainAxisAlignment.start, + children: [ + Text( + actor['name'], + maxLines: 1, + overflow: TextOverflow.ellipsis, + style: TextStyle( + fontSize: 14.sp, + color: Color(0xFF1E1E20), + fontWeight: FontWeight.w500, + ), + ), + SizedBox(height: 10.w), + Text( + actor['intro'].toString().replaceAll('\n', ','), + maxLines: 2, + overflow: TextOverflow.ellipsis, + style: TextStyle( + fontSize: 12.sp, + color: Color(0xFF1E1E20), + fontWeight: FontWeight.w400, + ), + ), + const Spacer(), + Container( + margin: EdgeInsets.only(bottom: 10.w), + padding: EdgeInsets.symmetric( + horizontal: 14.w, + vertical: 7.w, + ), + decoration: BoxDecoration( + color: Color(0xFF1E1E20), + borderRadius: BorderRadius.circular(100), + ), + child: Text( + 'To Detail', + style: TextStyle( + fontSize: 12.sp, + fontWeight: FontWeight.w500, + color: Color(0xFFA7F62F), + ), + ), + ), + ], + ), + ), + ], + ), + ), + ); + } + + fetchData() { + Future.delayed(Duration(seconds: 1)); + refreshCtrl.refreshCompleted(); + } + + List> actorList = [ + { + "id": 6, + "name": "Zhao Shuai", + "gender": "female", + "intro": + "Female Lead: Zhao Shuai as Luo Shuyou\nHometown: Heilongjiang Province\nBirthday: March 15\nHeight: 165 cm\nWeight: 42 kg\nZodiac: Pisces\nTV Series: 'Spring Sunshine' — Played: Yao Meizi, Directed by Wang Shenghua\n'Bottom Line' — Played: Wu Hua, Directed by Liu Guotong\nWeb Drama: 'It's Fine, It's Youth' — Played: Ren Keying (Female Lead), Directed by Huo Suiqiang\n'Classroom's That Room' — Played: Hu Anqi, Directed by Jia Bingqi\n'With You for Ten Years, Give Me Half a Lifetime' — Played: Sun Dayu, Directed by Jiang Tianhang\nCinema Films: 'The Legend of the Condor Heroes: Hero of the Great' — Played: Xiao He, Directed by Xu Ke\n'Life is Like a Play' — Played: Tang Xiaolu, Directed by Deba/Meng Lingqing\nWeb Drama: 'Great Flood' — Played: Yao Yao (Female Lead), Directed by Yan Jia\n'Yellow River Strange Stories' — Played: Xiao Di (Female Lead), Directed by Chen Julin\n'Exorcism Bureau: Four Shadows Demons' — Played: Xiao Ling (Female Lead), Directed by Huo Suiqiang\n'Exorcism Bureau: Awakening of the Azure Dragon' — Played: Xiao Ling (Female Lead), Directed by Huo Suiqiang\nShort Drama: 'Women's Choices' — Played: Su Yuning (Female Lead), Directed by Liu Shu\n'Call Me Queen' — Played: Shang Yingying (Female Lead), Directed by Wang Ya", + "avatar": + "https://videomgr.qinjiu8.com/static/0bf28fa5b897d1d30a6cec5c4aea0b1b?_ext=png", + }, + { + "id": 5, + "name": "Hou Weijie", + "gender": "male", + "intro": + "Height: 185 cm\nWeight: 73 kg\nGraduated from Sichuan Media College, Acting Department\nCurrently based in Hefei\nInterests: Basketball, Badminton, Ping Pong, Swimming, Driving, Shooting, Boxing, Archery\nWorks:\nWeb Drama 'God's Second-hand Trading Group' — Played: Xu Haixing (Male Lead)\nWeb Drama '90s Rebirth' — Played: Jiang Yan (Male Second)\nShort Drama 'Little White Boss' — Played: Lin Jiaxu (Male Lead)\nShort Drama 'Master Feng's Little Temptress' — Played: Si Fengxing\nShort Drama 'My Double-faced Sweet Wife' — Played: Feng Sixing (Male Second)\nShort Drama 'Lucky Pet Wife: War Master, Good Night' — Played: Zhan Hanjue (Male Lead)\nTV Drama 'Into Your Memory' — Played: Manager\nTV Drama 'Exclusive Memory' — Played: Reporter\nFilm 'Meet God' — Played: Wang Yi (Co-star with Wen Zhang)\nFilm 'Corridor Pavilion' — Played: Du Yu (Co-star with Liu Mintao)\nSichuan Government Propaganda Video\nChina Minsheng Bank Commercial\nChengdu 2021 World University Games Propaganda Video\nXiao Lang Jiu Commercial\nLenovo Tablet Commercial\nHuawei, Apple, Xiaomi Phone Commercials.", + "avatar": + "https://videomgr.qinjiu8.com/static/6b92a80413cbfd5c83cb59047e76534e?_ext=png", + }, { "id": 1, - "name": "瑞锋", - "intro": "出生于2000年,中国内地男演员,毕业于上海戏剧学院,曾在多部爆款短剧、网剧中担任男主。", + "name": "Rui Feng", + "gender": "male", + "intro": + "Born in 2000, a male actor from mainland China, graduated from Shanghai Theatre Academy, has played leading roles in several popular short dramas and web series.", "avatar": "https://videomgr.qinjiu8.com/static/06b0ae972754ca3e2a1efd2262a1d4a5?_ext=png", }, { "id": 2, - "name": "叶苗苗", - "intro": "出生于2004年,中国内地女演员,毕业于浙江传媒学院,曾在多部爆款短剧、网剧中担任女主。", + "name": "Ye Miaomiao", + "gender": "female", + "intro": + "Born in 2004, a female actor from mainland China, graduated from Zhejiang Media College, has played leading roles in several popular short dramas and web series.", "avatar": "https://videomgr.qinjiu8.com/static/7a8d60a4284c3a5b068fa0ad8cd14462?_ext=png", }, { "id": 3, - "name": "范大森", + "name": "Fan Daisen", + "gender": "female", "intro": - "姓名:范大森\n身高:180厘米\n体重:69公斤\n年龄:30岁\n院校:江西师范大学\n专业:音乐表演\n短剧作品:\n《范总天上掉老婆了》——饰演:范大森\n《护世龙君》——饰演:皇甫云\n《九点》——饰演:肖笑\n《大将军的贴身兵王》——饰演:游将", + "Name: Fan Daisen\nHeight: 180 cm\nWeight: 69 kg\nAge: 30\nMajor: Music Performance\nShort Drama Works:\n'Fan Zong, The Wife Fell From the Sky' — Played: Fan Daisen\n'Guardian Dragon Lord' — Played: Huangfu Yun\n'Nine O'Clock' — Played: Xiao Xiao\n'General's Personal Bodyguard' — Played: You Jiang", "avatar": "https://videomgr.qinjiu8.com/static/e82fc5711f9889258e42d3c21a8956bc?_ext=png", }, { "id": 4, - "name": "夏凯璐", + "name": "Xia Kailu", + "gender": "female", "intro": - "姓名:夏凯璐\n身高:169厘米\n体重:49公斤\n年龄:23岁\n院校:江西师范大学\n专业:音乐表演\n短剧作品:\n《范总天上掉老婆了》——饰演:苏婉清", + "Name: Xia Kailu\nHeight: 169 cm\nWeight: 49 kg\nAge: 23\nMajor: Music Performance\nShort Drama Works:\n'Fan Zong, The Wife Fell From the Sky' — Played: Su Wanqing", "avatar": "https://videomgr.qinjiu8.com/static/6d6c8be4a63f2cae2922a460518bb340?_ext=png", }, - { - "id": 5, - "name": "侯伟杰", - "intro": - "身高:185cm\n体重:73kg\n毕业于四川传媒学院表演系\n目前常驻地:合肥\n兴趣爱好:篮球 羽毛球 乒乓球 游泳 开车 射击 拳击 射箭\n 作品:网剧《神仙二手交易群》饰演男一徐海星\n网剧《九零重生》饰演男二蒋延\n短剧《小白老板》饰演男一林嘉许\n短剧《封爷的小撩精不好惹》饰演司封行\n短剧《我的双面甜妻》饰演男二封司行\n短剧《幸运宠妻·战爷,晚安》饰演男一战寒爵\n电视剧《走进你的记忆》饰演经理\n电视剧《独家记忆》饰演记者\n电影《遇神》饰演王益与文章对手戏\n电影《回廊亭》饰演杜宇与刘敏涛对手戏\n四川政府宣传片\n中国民生银行宣传片\n成都2021世界大运会宣传片\n小郎酒宣传片\n联想平板电脑新品宣传片\n富锦月饼TVC \n魔域手游NORTHLAND宣传片\n华为苹果小米手机宣传。", - "avatar": - "https://videomgr.qinjiu8.com/static/6b92a80413cbfd5c83cb59047e76534e?_ext=png", - }, - { - "id": 6, - "name": "赵帅", - "intro": - "女主:赵帅饰洛书瑶\n籍贯: 黑龙江省\n生日: 3月15号\n身高: 165 cm\n体重: 42kg\n星座: 双鱼座\n电 视 剧:《春晖》饰演:瑶妹子导演:万盛华\n《底线》饰演:吴 华导演:刘国彤\n网 剧 作 品:《没关系,是青春啊》饰演:任可盈(女一)导演:霍穗强\n《教室的那一间》饰演:胡安琪导演:贾炳祺\n《与你十年,予我半生》饰演:孙大宇导演:姜天航\n院 线 电 影:《射雕英雄传·侠之大者》饰演:小 禾导演:徐 克\n《戏如人生》饰演:唐小璐导演:德柏/孟令青\n网 大 作 品:《大洪水》饰演:姚 尧(女一)导演: 严 嘉\n《黄河诡事》饰演:小 笛(女一)导演: 陈聚力\n《镇魔司: 四像伏魔》饰演:萧 玲(女一 )导演: 霍穗强 \n《镇魔司: 苍龙觉醒》饰演:萧 玲(女一 )导演: 霍穗强\n 短 剧 作 品:《女人的抉择》饰演:苏雨宁(女一)导演: 柳 澍\n《叫我女王大人》饰演:尚盈盈 (女一)导演: 王 亚", - "avatar": - "https://videomgr.qinjiu8.com/static/0bf28fa5b897d1d30a6cec5c4aea0b1b?_ext=png", - }, + { "id": 7, - "name": "卡戎", + "name": "Karong", + "gender": "male", "intro": - "00后男演员,热爱影视、喜欢戏剧。凭借作品《胡小路成长记》获全国心理情景剧一等奖,《冬至夏来》全国微电影大赛二等奖,参演国防部微电影《火种》,以及众多影视、戏剧作品的参演", + "A male actor born after 2000, passionate about film and drama. Won the National Psychological Drama First Prize for 'The Growth of Hu Xiaolu', the National Micro Film Festival Second Prize for 'Winter Comes Summer', participated in the Ministry of Defense's micro-film 'Fire Seed', and appeared in many other films, dramas, and plays.", "avatar": "https://videomgr.qinjiu8.com/static/fd9d48e2ec95b0f06260333d126654a5?_ext=jpg", }, { "id": 8, - "name": "雷铠昀", - "intro": "90后女演员,饰第30届大学生电影节公益片一等奖《回响》 女主,第十届亚洲微电影艺术节好作品奖女主", + "name": "Lei Kaiyun", + "gender": "female", + "intro": + "A female actor born in the 90s, played the female lead in the first-place winner of the 30th University Film Festival Public Welfare Film 'Echo', and the female lead in the 10th Asia Micro Film Art Festival's Good Works Award.", "avatar": "https://videomgr.qinjiu8.com/static/1d5cd0c34b24310c903fc4d7f7da6e57?_ext=jpg", }, { "id": 9, - "name": "陆楚", + "name": "Lu Chu", + "gender": "male", "intro": - "年龄:24岁;所在地:北京;\r\n作品:《枫月俏佳人》男一 许枫\r\n《寒门枭士》饰演金锋(男一)爆;\r\n《伯虎闯花都》饰演唐伯虎(男一)爆\r\n《当我穿越成女儿国当先知》饰演 苏灿(男一)爆\r\n《骏马无敌》饰演 林风(男一);\r\n《陛下,我真的只想花钱啊》饰演 叶辰(男一);\r\n《回到民国当少帅》饰演周成(男一)", + "Age: 24; Location: Beijing;\nWorks: 'Maple Moon Beauty' (Male Lead: Xu Feng)\n'Cold Gate Hero' as Jin Feng (Male Lead)\n'Bai Hu Breaks Into Flower City' as Tang Bohu (Male Lead)\n'When I Became a Prophet in the Kingdom of Women' as Su Can (Male Lead)\n'Invincible Steed' as Lin Feng (Male Lead)\n'Your Majesty, I Just Want to Spend Money' as Ye Chen (Male Lead)\n'Returning to the Republic of China as a Young Master' as Zhou Cheng (Male Lead)", "avatar": "https://videomgr.qinjiu8.com/static/e11be3feb0e84a9dfe92edb9472668a2?_ext=png", }, { "id": 10, - "name": "代代", - "intro": "年龄:23岁;所在地:郑州;\n作品:《枫月俏佳人》诗夏月 (女主)\n《逆天赘婿》", + "name": "Dai Dai", + "gender": "female", + "intro": + "Age: 23; Location: Zhengzhou;\nWorks: 'Maple Moon Beauty' as Shi Xiamoon (Female Lead)\n'Reverse Heavenly Son-in-law'", "avatar": "https://videomgr.qinjiu8.com/static/ebd45f3c89b2e88134b22171f09ed7dd?_ext=png", }, ]; - @override - Widget build(BuildContext context) { - return Scaffold(); - } } diff --git a/pubspec.lock b/pubspec.lock index 8e2440d..4c97177 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -6,7 +6,7 @@ packages: description: name: _flutterfire_internals sha256: "37a42d06068e2fe3deddb2da079a8c4d105f241225ba27b7122b37e9865fd8f7" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.3.35" adjust_sdk: @@ -14,7 +14,7 @@ packages: description: name: adjust_sdk sha256: "1e1da3bd53afe1b5cde876f2aab2d572acd552d749f0309acc14a8b1e08fe8c6" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "5.4.1" advertising_id: @@ -22,7 +22,7 @@ packages: description: name: advertising_id sha256: ab06ee85203ab500be85b7f45de2a75a629d8d9c453dba779276fbc4e97ad8d3 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.7.1" android_id: @@ -30,7 +30,7 @@ packages: description: name: android_id sha256: "748ba5f93dd5c497e675d8eaa1404346ce4d1794464ea654576ff192d153b92a" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.4.0" ansicolor: @@ -38,7 +38,7 @@ packages: description: name: ansicolor sha256: "50e982d500bc863e1d703448afdbf9e5a72eb48840a4f766fa361ffd6877055f" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.0.3" app_badge_plus: @@ -46,7 +46,7 @@ packages: description: name: app_badge_plus sha256: cbbb03cdac77c89c1494534fc2397e7f54deb84d2f968af9f8caaecbc54e86e7 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.2.3" app_links: @@ -54,7 +54,7 @@ packages: description: name: app_links sha256: "5f88447519add627fe1cbcab4fd1da3d4fed15b9baf29f28b22535c95ecee3e8" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "6.4.1" app_links_linux: @@ -62,7 +62,7 @@ packages: description: name: app_links_linux sha256: f5f7173a78609f3dfd4c2ff2c95bd559ab43c80a87dc6a095921d96c05688c81 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.0.3" app_links_platform_interface: @@ -70,7 +70,7 @@ packages: description: name: app_links_platform_interface sha256: "05f5379577c513b534a29ddea68176a4d4802c46180ee8e2e966257158772a3f" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.0.2" app_links_web: @@ -78,7 +78,7 @@ packages: description: name: app_links_web sha256: af060ed76183f9e2b87510a9480e56a5352b6c249778d07bd2c95fc35632a555 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.0.4" app_tracking_transparency: @@ -86,7 +86,7 @@ packages: description: name: app_tracking_transparency sha256: "1f71f4d8402552fbf8b191d4edab301f233c1af794878b7bc56c708470ffd74c" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.0.6+1" archive: @@ -94,7 +94,7 @@ packages: description: name: archive sha256: "2fde1607386ab523f7a36bb3e7edb43bd58e6edaf2ffb29d8a6d578b297fdbbd" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "4.0.7" args: @@ -102,7 +102,7 @@ packages: description: name: args sha256: d0481093c50b1da8910eb0bb301626d4d8eb7284aa739614d2b394ee09e3ea04 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.7.0" async: @@ -110,7 +110,7 @@ packages: description: name: async sha256: "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.13.0" badges: @@ -118,7 +118,7 @@ packages: description: name: badges sha256: a7b6bbd60dce418df0db3058b53f9d083c22cdb5132a052145dc267494df0b84 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.1.2" boolean_selector: @@ -126,7 +126,7 @@ packages: description: name: boolean_selector sha256: "8aab1771e1243a5063b8b0ff68042d67334e3feab9e95b9490f9a6ebf73b42ea" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.1.2" bordered_text: @@ -134,7 +134,7 @@ packages: description: name: bordered_text sha256: e52c549c9d01fdf6359eee7220900eb5a5853b08aa862c8c604442918ca6b4c4 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.0.0" bot_toast: @@ -142,7 +142,7 @@ packages: description: name: bot_toast sha256: "6b93030a99a98335b8827ecd83021e92e885ffc61d261d3825ffdecdd17f3bdf" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "4.1.3" cached_network_image: @@ -150,7 +150,7 @@ packages: description: name: cached_network_image sha256: "7c1183e361e5c8b0a0f21a28401eecdbde252441106a9816400dd4c2b2424916" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.4.1" cached_network_image_platform_interface: @@ -158,7 +158,7 @@ packages: description: name: cached_network_image_platform_interface sha256: "35814b016e37fbdc91f7ae18c8caf49ba5c88501813f73ce8a07027a395e2829" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "4.1.1" cached_network_image_web: @@ -166,7 +166,7 @@ packages: description: name: cached_network_image_web sha256: "980842f4e8e2535b8dbd3d5ca0b1f0ba66bf61d14cc3a17a9b4788a3685ba062" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.3.1" card_swiper: @@ -174,7 +174,7 @@ packages: description: name: card_swiper sha256: "21e52a144decbf0054e7cfed8bbe46fc89635e6c86b767eaccfe7d5aeba32528" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.0.1" characters: @@ -182,7 +182,7 @@ packages: description: name: characters sha256: f71061c654a3380576a52b451dd5532377954cf9dbd272a78fc8479606670803 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.4.0" checked_yaml: @@ -190,23 +190,23 @@ packages: description: name: checked_yaml sha256: "959525d3162f249993882720d52b7e0c833978df229be20702b33d48d91de70f" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.0.4" chewie: dependency: "direct main" description: name: chewie - sha256: "19b93a1e60e4ba640a792208a6543f1c7d5b124d011ce0199e2f18802199d984" - url: "https://pub.flutter-io.cn" + sha256: "44bcfc5f0dfd1de290c87c9d86a61308b3282a70b63435d5557cfd60f54a69ca" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted - version: "1.12.1" + version: "1.13.0" cli_util: dependency: transitive description: name: cli_util sha256: ff6785f7e9e3c38ac98b2fb035701789de90154024a75b6cb926445e83197d1c - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.4.2" clock: @@ -214,7 +214,7 @@ packages: description: name: clock sha256: fddb70d9b5277016c77a80201021d40a2247104d9f4aa7bab7157b7e3f05b84b - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.1.2" collection: @@ -222,7 +222,7 @@ packages: description: name: collection sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.19.1" common_utils: @@ -230,7 +230,7 @@ packages: description: name: common_utils sha256: c26884339b13ff99b0739e56f4b02090c84054ed9dd3a045435cd24e7b99c2c1 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.1.0" convert: @@ -238,7 +238,7 @@ packages: description: name: convert sha256: b30acd5944035672bc15c6b7a8b47d773e41e2f17de064350988c5d02adb1c68 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.1.2" cross_file: @@ -246,7 +246,7 @@ packages: description: name: cross_file sha256: "7caf6a750a0c04effbb52a676dce9a4a592e10ad35c34d6d2d0e4811160d5670" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.3.4+2" crypto: @@ -254,7 +254,7 @@ packages: description: name: crypto sha256: "1e445881f28f22d6140f181e07737b22f1e099a5e1ff94b0af2f9e4a463f4855" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.0.6" csslib: @@ -262,7 +262,7 @@ packages: description: name: csslib sha256: "09bad715f418841f976c77db72d5398dc1253c21fb9c0c7f0b0b985860b2d58e" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.0.2" cupertino_icons: @@ -270,7 +270,7 @@ packages: description: name: cupertino_icons sha256: ba631d1c7f7bef6b729a622b7b752645a2d076dba9976925b8f25725a30e1ee6 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.0.8" dbus: @@ -278,7 +278,7 @@ packages: description: name: dbus sha256: "79e0c23480ff85dc68de79e2cd6334add97e48f7f4865d17686dd6ea81a47e8c" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.7.11" decimal: @@ -286,7 +286,7 @@ packages: description: name: decimal sha256: "24a261d5d5c87e86c7651c417a5dbdf8bcd7080dd592533910e8d0505a279f21" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.3.3" device_info_plus: @@ -294,7 +294,7 @@ packages: description: name: device_info_plus sha256: "98f28b42168cc509abc92f88518882fd58061ea372d7999aecc424345c7bff6a" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "11.5.0" device_info_plus_platform_interface: @@ -302,7 +302,7 @@ packages: description: name: device_info_plus_platform_interface sha256: e1ea89119e34903dca74b883d0dd78eb762814f97fb6c76f35e9ff74d261a18f - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "7.0.3" dio: @@ -310,7 +310,7 @@ packages: description: name: dio sha256: d90ee57923d1828ac14e492ca49440f65477f4bb1263575900be731a3dac66a9 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "5.9.0" dio_web_adapter: @@ -318,7 +318,7 @@ packages: description: name: dio_web_adapter sha256: "7586e476d70caecaf1686d21eee7247ea43ef5c345eab9e0cc3583ff13378d78" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.1.1" easy_debounce: @@ -326,7 +326,7 @@ packages: description: name: easy_debounce sha256: f082609cfb8f37defb9e37fc28bc978c6712dedf08d4c5a26f820fa10165a236 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.0.3" easy_refresh: @@ -334,7 +334,7 @@ packages: description: name: easy_refresh sha256: "486e30abfcaae66c0f2c2798a10de2298eb9dc5e0bb7e1dba9328308968cae0c" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.4.0" facebook_auth_desktop: @@ -342,7 +342,7 @@ packages: description: name: facebook_auth_desktop sha256: e6cc4d6f50a1d67d99e7dac7d77a40fe27122496e224cb708ae168d7d9aac0ac - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.0.3" fake_async: @@ -350,7 +350,7 @@ packages: description: name: fake_async sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.3.3" ffi: @@ -358,7 +358,7 @@ packages: description: name: ffi sha256: "289279317b4b16eb2bb7e271abccd4bf84ec9bdcbe999e278a94b804f5630418" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.1.4" file: @@ -366,7 +366,7 @@ packages: description: name: file sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "7.0.1" file_selector_linux: @@ -374,7 +374,7 @@ packages: description: name: file_selector_linux sha256: "54cbbd957e1156d29548c7d9b9ec0c0ebb6de0a90452198683a7d23aed617a33" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.9.3+2" file_selector_macos: @@ -382,7 +382,7 @@ packages: description: name: file_selector_macos sha256: "19124ff4a3d8864fdc62072b6a2ef6c222d55a3404fe14893a3c02744907b60c" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.9.4+4" file_selector_platform_interface: @@ -390,7 +390,7 @@ packages: description: name: file_selector_platform_interface sha256: a3994c26f10378a039faa11de174d7b78eb8f79e4dd0af2a451410c1a5c3f66b - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.6.2" file_selector_windows: @@ -398,7 +398,7 @@ packages: description: name: file_selector_windows sha256: "320fcfb6f33caa90f0b58380489fc5ac05d99ee94b61aa96ec2bff0ba81d3c2b" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.9.3+4" firebase_analytics: @@ -406,7 +406,7 @@ packages: description: name: firebase_analytics sha256: ddfcb2aadec496e3ae2c49aa77c11b416ff705c38a3faa837fcbddceb2e049fa - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "10.8.10" firebase_analytics_platform_interface: @@ -414,7 +414,7 @@ packages: description: name: firebase_analytics_platform_interface sha256: "3729b74f8cf1d974a27ba70332ecb55ff5ff560edc8164a6469f4a055b429c37" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.10.8" firebase_analytics_web: @@ -422,7 +422,7 @@ packages: description: name: firebase_analytics_web sha256: "019cd7eee74254d33fbd2e29229367ce33063516bf6b3258a341d89e3b0f1655" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.5.7+7" firebase_core: @@ -430,7 +430,7 @@ packages: description: name: firebase_core sha256: "26de145bb9688a90962faec6f838247377b0b0d32cc0abecd9a4e43525fc856c" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.32.0" firebase_core_platform_interface: @@ -438,7 +438,7 @@ packages: description: name: firebase_core_platform_interface sha256: "8bcfad6d7033f5ea951d15b867622a824b13812178bfec0c779b9d81de011bbb" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "5.4.2" firebase_core_web: @@ -446,7 +446,7 @@ packages: description: name: firebase_core_web sha256: eb3afccfc452b2b2075acbe0c4b27de62dd596802b4e5e19869c1e926cbb20b3 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.24.0" firebase_crashlytics: @@ -454,7 +454,7 @@ packages: description: name: firebase_crashlytics sha256: "9897c01efaa950d2f6da8317d12452749a74dc45f33b46390a14cfe28067f271" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.5.7" firebase_crashlytics_platform_interface: @@ -462,7 +462,7 @@ packages: description: name: firebase_crashlytics_platform_interface sha256: "16a71e08fbf6e00382816e1b13397898c29a54fa0ad969c2c2a3b82a704877f0" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.6.35" firebase_messaging: @@ -470,7 +470,7 @@ packages: description: name: firebase_messaging sha256: "980259425fa5e2afc03e533f33723335731d21a56fd255611083bceebf4373a8" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "14.7.10" firebase_messaging_platform_interface: @@ -478,7 +478,7 @@ packages: description: name: firebase_messaging_platform_interface sha256: "87c4a922cb6f811cfb7a889bdbb3622702443c52a0271636cbc90d813ceac147" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "4.5.37" firebase_messaging_web: @@ -486,7 +486,7 @@ packages: description: name: firebase_messaging_web sha256: "90dc7ed885e90a24bb0e56d661d4d2b5f84429697fd2cbb9e5890a0ca370e6f4" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.5.18" firebase_performance: @@ -494,7 +494,7 @@ packages: description: name: firebase_performance sha256: dbcfc300755c4bb866988de20a491f0b53e1a0d14c375a2c31aa53ca82174c5b - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.9.4+7" firebase_performance_platform_interface: @@ -502,7 +502,7 @@ packages: description: name: firebase_performance_platform_interface sha256: "191c9945c2ea4359cb57dc086463b2a25b0f9d8d42f66a0be4c1a7133e26ebc8" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.1.4+35" firebase_performance_web: @@ -510,7 +510,7 @@ packages: description: name: firebase_performance_web sha256: "9f03a53f55697b206393366bf138e382cbd845d5021b5be6f7fc97b338da2cb5" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.1.6+7" fixnum: @@ -518,7 +518,7 @@ packages: description: name: fixnum sha256: b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.1.1" flustars: @@ -526,7 +526,7 @@ packages: description: name: flustars sha256: "7019ab8d68c0d4759ee122644d91a165d450b0492717f9e7e9d0ce277dcf664b" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.0.1" flutter: @@ -539,7 +539,7 @@ packages: description: name: flutter_cache_manager sha256: "400b6592f16a4409a7f2bb929a9a7e38c72cceb8ffb99ee57bbf2cb2cecf8386" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.4.1" flutter_card_swiper: @@ -547,7 +547,7 @@ packages: description: name: flutter_card_swiper sha256: "1eacbfab31b572223042e03409726553aec431abe48af48c8d591d376d070d3d" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "7.0.2" flutter_easyloading: @@ -555,7 +555,7 @@ packages: description: name: flutter_easyloading sha256: ba21a3c883544e582f9cc455a4a0907556714e1e9cf0eababfcb600da191d17c - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.0.5" flutter_facebook_auth: @@ -563,7 +563,7 @@ packages: description: name: flutter_facebook_auth sha256: bc455122d3ea14fd0887b1a0f74d0ead845c04bfc2e68c64d9a701367d665724 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "6.2.0" flutter_facebook_auth_platform_interface: @@ -571,7 +571,7 @@ packages: description: name: flutter_facebook_auth_platform_interface sha256: "86630c4dbba1c20fba26ea9e59ad0d48f5ff59e7373cacd36f916160186f9ce9" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "5.0.0" flutter_facebook_auth_web: @@ -579,7 +579,7 @@ packages: description: name: flutter_facebook_auth_web sha256: "22dca8091409309ad85b9f430fbd8f57b686276979da5195e7e97587352567ce" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "5.0.0" flutter_image_compress: @@ -587,7 +587,7 @@ packages: description: name: flutter_image_compress sha256: "51d23be39efc2185e72e290042a0da41aed70b14ef97db362a6b5368d0523b27" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.4.0" flutter_image_compress_common: @@ -595,7 +595,7 @@ packages: description: name: flutter_image_compress_common sha256: c5c5d50c15e97dd7dc72ff96bd7077b9f791932f2076c5c5b6c43f2c88607bfb - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.0.6" flutter_image_compress_macos: @@ -603,7 +603,7 @@ packages: description: name: flutter_image_compress_macos sha256: "20019719b71b743aba0ef874ed29c50747461e5e8438980dfa5c2031898f7337" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.0.3" flutter_image_compress_ohos: @@ -611,7 +611,7 @@ packages: description: name: flutter_image_compress_ohos sha256: e76b92bbc830ee08f5b05962fc78a532011fcd2041f620b5400a593e96da3f51 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.0.3" flutter_image_compress_platform_interface: @@ -619,7 +619,7 @@ packages: description: name: flutter_image_compress_platform_interface sha256: "579cb3947fd4309103afe6442a01ca01e1e6f93dc53bb4cbd090e8ce34a41889" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.0.5" flutter_image_compress_web: @@ -627,7 +627,7 @@ packages: description: name: flutter_image_compress_web sha256: b9b141ac7c686a2ce7bb9a98176321e1182c9074650e47bb140741a44b6f5a96 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.1.5" flutter_inappwebview: @@ -635,7 +635,7 @@ packages: description: name: flutter_inappwebview sha256: "80092d13d3e29b6227e25b67973c67c7210bd5e35c4b747ca908e31eb71a46d5" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "6.1.5" flutter_inappwebview_android: @@ -643,7 +643,7 @@ packages: description: name: flutter_inappwebview_android sha256: "62557c15a5c2db5d195cb3892aab74fcaec266d7b86d59a6f0027abd672cddba" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.1.3" flutter_inappwebview_internal_annotations: @@ -651,7 +651,7 @@ packages: description: name: flutter_inappwebview_internal_annotations sha256: "787171d43f8af67864740b6f04166c13190aa74a1468a1f1f1e9ee5b90c359cd" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.2.0" flutter_inappwebview_ios: @@ -659,7 +659,7 @@ packages: description: name: flutter_inappwebview_ios sha256: "5818cf9b26cf0cbb0f62ff50772217d41ea8d3d9cc00279c45f8aabaa1b4025d" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.1.2" flutter_inappwebview_macos: @@ -667,7 +667,7 @@ packages: description: name: flutter_inappwebview_macos sha256: c1fbb86af1a3738e3541364d7d1866315ffb0468a1a77e34198c9be571287da1 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.1.2" flutter_inappwebview_platform_interface: @@ -675,7 +675,7 @@ packages: description: name: flutter_inappwebview_platform_interface sha256: cf5323e194096b6ede7a1ca808c3e0a078e4b33cc3f6338977d75b4024ba2500 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.3.0+1" flutter_inappwebview_web: @@ -683,7 +683,7 @@ packages: description: name: flutter_inappwebview_web sha256: "55f89c83b0a0d3b7893306b3bb545ba4770a4df018204917148ebb42dc14a598" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.1.2" flutter_inappwebview_windows: @@ -691,7 +691,7 @@ packages: description: name: flutter_inappwebview_windows sha256: "8b4d3a46078a2cdc636c4a3d10d10f2a16882f6be607962dbfff8874d1642055" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.6.0" flutter_launcher_icons: @@ -699,7 +699,7 @@ packages: description: name: flutter_launcher_icons sha256: "10f13781741a2e3972126fae08393d3c4e01fa4cd7473326b94b72cf594195e7" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.14.4" flutter_lints: @@ -707,23 +707,23 @@ packages: description: name: flutter_lints sha256: "5398f14efa795ffb7a33e9b6a08798b26a180edac4ad7db3f231e40f82ce11e1" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "5.0.0" flutter_local_notifications: dependency: "direct main" description: name: flutter_local_notifications - sha256: a9966c850de5e445331b854fa42df96a8020066d67f125a5964cbc6556643f68 - url: "https://pub.flutter-io.cn" + sha256: "7ed76be64e8a7d01dfdf250b8434618e2a028c9dfa2a3c41dc9b531d4b3fc8a5" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted - version: "19.4.1" + version: "19.4.2" flutter_local_notifications_linux: dependency: transitive description: name: flutter_local_notifications_linux sha256: e3c277b2daab8e36ac5a6820536668d07e83851aeeb79c446e525a70710770a5 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "6.0.0" flutter_local_notifications_platform_interface: @@ -731,23 +731,23 @@ packages: description: name: flutter_local_notifications_platform_interface sha256: "277d25d960c15674ce78ca97f57d0bae2ee401c844b6ac80fcd972a9c99d09fe" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "9.1.0" flutter_local_notifications_windows: dependency: transitive description: name: flutter_local_notifications_windows - sha256: ed46d7ae4ec9d19e4c8fa2badac5fe27ba87a3fe387343ce726f927af074ec98 - url: "https://pub.flutter-io.cn" + sha256: "8d658f0d367c48bd420e7cf2d26655e2d1130147bca1eea917e576ca76668aaf" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted - version: "1.0.2" + version: "1.0.3" flutter_native_splash: dependency: "direct dev" description: name: flutter_native_splash sha256: "8321a6d11a8d13977fa780c89de8d257cce3d841eecfb7a4cadffcc4f12d82dc" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.4.6" flutter_plugin_android_lifecycle: @@ -755,7 +755,7 @@ packages: description: name: flutter_plugin_android_lifecycle sha256: b0694b7fb1689b0e6cc193b3f1fcac6423c4f93c74fb20b806c6b6f196db0c31 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.0.30" flutter_screenutil: @@ -763,7 +763,7 @@ packages: description: name: flutter_screenutil sha256: "8239210dd68bee6b0577aa4a090890342d04a136ce1c81f98ee513fc0ce891de" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "5.9.3" flutter_secure_storage: @@ -771,7 +771,7 @@ packages: description: name: flutter_secure_storage sha256: "9cad52d75ebc511adfae3d447d5d13da15a55a92c9410e50f67335b6d21d16ea" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "9.2.4" flutter_secure_storage_linux: @@ -779,7 +779,7 @@ packages: description: name: flutter_secure_storage_linux sha256: be76c1d24a97d0b98f8b54bce6b481a380a6590df992d0098f868ad54dc8f688 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.2.3" flutter_secure_storage_macos: @@ -787,7 +787,7 @@ packages: description: name: flutter_secure_storage_macos sha256: "6c0a2795a2d1de26ae202a0d78527d163f4acbb11cde4c75c670f3a0fc064247" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.1.3" flutter_secure_storage_platform_interface: @@ -795,7 +795,7 @@ packages: description: name: flutter_secure_storage_platform_interface sha256: cf91ad32ce5adef6fba4d736a542baca9daf3beac4db2d04be350b87f69ac4a8 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.1.2" flutter_secure_storage_web: @@ -803,7 +803,7 @@ packages: description: name: flutter_secure_storage_web sha256: f4ebff989b4f07b2656fb16b47852c0aab9fed9b4ec1c70103368337bc1886a9 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.2.1" flutter_secure_storage_windows: @@ -811,7 +811,7 @@ packages: description: name: flutter_secure_storage_windows sha256: b20b07cb5ed4ed74fc567b78a72936203f587eba460af1df11281c9326cd3709 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.1.2" flutter_spinkit: @@ -819,7 +819,7 @@ packages: description: name: flutter_spinkit sha256: "77850df57c00dc218bfe96071d576a8babec24cf58b2ed121c83cca4a2fdce7f" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "5.2.2" flutter_staggered_grid_view: @@ -827,7 +827,7 @@ packages: description: name: flutter_staggered_grid_view sha256: "19e7abb550c96fbfeb546b23f3ff356ee7c59a019a651f8f102a4ba9b7349395" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.7.0" flutter_test: @@ -845,7 +845,7 @@ packages: description: name: fluttertoast sha256: "25e51620424d92d3db3832464774a6143b5053f15e382d8ffbfd40b6e795dcf1" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "8.2.12" get: @@ -853,7 +853,7 @@ packages: description: name: get sha256: c79eeb4339f1f3deffd9ec912f8a923834bec55f7b49c9e882b8fef2c139d425 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "4.7.2" gtk: @@ -861,7 +861,7 @@ packages: description: name: gtk sha256: e8ce9ca4b1df106e4d72dad201d345ea1a036cc12c360f1a7d5a758f78ffa42c - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.1.0" html: @@ -869,7 +869,7 @@ packages: description: name: html sha256: "6d1264f2dffa1b1101c25a91dff0dc2daee4c18e87cd8538729773c073dbf602" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.15.6" http: @@ -877,7 +877,7 @@ packages: description: name: http sha256: bb2ce4590bc2667c96f318d68cac1b5a7987ec819351d32b1c987239a815e007 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.5.0" http_parser: @@ -885,7 +885,7 @@ packages: description: name: http_parser sha256: "178d74305e7866013777bab2c3d8726205dc5a4dd935297175b19a23a2e66571" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "4.1.2" image: @@ -893,7 +893,7 @@ packages: description: name: image sha256: "4e973fcf4caae1a4be2fa0a13157aa38a8f9cb049db6529aa00b4d71abc4d928" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "4.5.4" image_picker: @@ -901,7 +901,7 @@ packages: description: name: image_picker sha256: "736eb56a911cf24d1859315ad09ddec0b66104bc41a7f8c5b96b4e2620cf5041" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.2.0" image_picker_android: @@ -909,7 +909,7 @@ packages: description: name: image_picker_android sha256: "28f3987ca0ec702d346eae1d90eda59603a2101b52f1e234ded62cff1d5cfa6e" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.8.13+1" image_picker_for_web: @@ -917,7 +917,7 @@ packages: description: name: image_picker_for_web sha256: "40c2a6a0da15556dc0f8e38a3246064a971a9f512386c3339b89f76db87269b6" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.1.0" image_picker_ios: @@ -925,7 +925,7 @@ packages: description: name: image_picker_ios sha256: eb06fe30bab4c4497bad449b66448f50edcc695f1c59408e78aa3a8059eb8f0e - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.8.13" image_picker_linux: @@ -933,7 +933,7 @@ packages: description: name: image_picker_linux sha256: "1f81c5f2046b9ab724f85523e4af65be1d47b038160a8c8deed909762c308ed4" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.2.2" image_picker_macos: @@ -941,7 +941,7 @@ packages: description: name: image_picker_macos sha256: d58cd9d67793d52beefd6585b12050af0a7663c0c2a6ece0fb110a35d6955e04 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.2.2" image_picker_platform_interface: @@ -949,7 +949,7 @@ packages: description: name: image_picker_platform_interface sha256: "9f143b0dba3e459553209e20cc425c9801af48e6dfa4f01a0fcf927be3f41665" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.11.0" image_picker_windows: @@ -957,7 +957,7 @@ packages: description: name: image_picker_windows sha256: d248c86554a72b5495a31c56f060cf73a41c7ff541689327b1a7dbccc33adfae - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.2.2" in_app_purchase: @@ -965,7 +965,7 @@ packages: description: name: in_app_purchase sha256: "11a40f148eeb4f681a0572003e2b33432e110c90c1bbb4f9ef83b81ec0c4f737" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.2.1" in_app_purchase_android: @@ -973,7 +973,7 @@ packages: description: name: in_app_purchase_android sha256: "5a02da1399a8faafb36d9b4acca85001b7eefa629f0eeeebf5ad0b04b9df302a" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.4.0+4" in_app_purchase_platform_interface: @@ -981,7 +981,7 @@ packages: description: name: in_app_purchase_platform_interface sha256: "1d353d38251da5b9fea6635c0ebfc6bb17a2d28d0e86ea5e083bf64244f1fb4c" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.4.0" in_app_purchase_storekit: @@ -989,7 +989,7 @@ packages: description: name: in_app_purchase_storekit sha256: "6ce1361278cacc0481508989ba419b2c9f46a2b0dc54b3fe54f5ee63c2718fef" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.3.22+1" intl: @@ -997,7 +997,7 @@ packages: description: name: intl sha256: "3bc132a9dbce73a7e4a21a17d06e1878839ffbf975568bc875c60537824b0c4d" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.18.1" js: @@ -1005,7 +1005,7 @@ packages: description: name: js sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.6.7" json_annotation: @@ -1013,7 +1013,7 @@ packages: description: name: json_annotation sha256: "1ce844379ca14835a50d2f019a3099f419082cfdd231cd86a142af94dd5c6bb1" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "4.9.0" leak_tracker: @@ -1021,7 +1021,7 @@ packages: description: name: leak_tracker sha256: "6bb818ecbdffe216e81182c2f0714a2e62b593f4a4f13098713ff1685dfb6ab0" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "10.0.9" leak_tracker_flutter_testing: @@ -1029,7 +1029,7 @@ packages: description: name: leak_tracker_flutter_testing sha256: f8b613e7e6a13ec79cfdc0e97638fddb3ab848452eff057653abd3edba760573 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.0.9" leak_tracker_testing: @@ -1037,7 +1037,7 @@ packages: description: name: leak_tracker_testing sha256: "6ba465d5d76e67ddf503e1161d1f4a6bc42306f9d66ca1e8f079a47290fb06d3" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.0.1" lints: @@ -1045,7 +1045,7 @@ packages: description: name: lints sha256: c35bb79562d980e9a453fc715854e1ed39e24e7d0297a880ef54e17f9874a9d7 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "5.1.1" matcher: @@ -1053,7 +1053,7 @@ packages: description: name: matcher sha256: dc58c723c3c24bf8d3e2d3ad3f2f9d7bd9cf43ec6feaa64181775e60190153f2 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.12.17" material_color_utilities: @@ -1061,7 +1061,7 @@ packages: description: name: material_color_utilities sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.11.1" meta: @@ -1069,7 +1069,7 @@ packages: description: name: meta sha256: e3641ec5d63ebf0d9b41bd43201a66e3fc79a65db5f61fc181f04cd27aab950c - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.16.0" mime: @@ -1077,7 +1077,7 @@ packages: description: name: mime sha256: "41a20518f0cb1256669420fdba0cd90d21561e560ac240f26ef8322e45bb7ed6" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.0.0" nested: @@ -1085,7 +1085,7 @@ packages: description: name: nested sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.0.0" octo_image: @@ -1093,7 +1093,7 @@ packages: description: name: octo_image sha256: "34faa6639a78c7e3cbe79be6f9f96535867e879748ade7d17c9b1ae7536293bd" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.1.0" package_info_plus: @@ -1101,7 +1101,7 @@ packages: description: name: package_info_plus sha256: "16eee997588c60225bda0488b6dcfac69280a6b7a3cf02c741895dd370a02968" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "8.3.1" package_info_plus_platform_interface: @@ -1109,7 +1109,7 @@ packages: description: name: package_info_plus_platform_interface sha256: "202a487f08836a592a6bd4f901ac69b3a8f146af552bbd14407b6b41e1c3f086" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.2.1" path: @@ -1117,7 +1117,7 @@ packages: description: name: path sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.9.1" path_drawing: @@ -1125,7 +1125,7 @@ packages: description: name: path_drawing sha256: bbb1934c0cbb03091af082a6389ca2080345291ef07a5fa6d6e078ba8682f977 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.0.1" path_parsing: @@ -1133,7 +1133,7 @@ packages: description: name: path_parsing sha256: "883402936929eac138ee0a45da5b0f2c80f89913e6dc3bf77eb65b84b409c6ca" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.1.0" path_provider: @@ -1141,7 +1141,7 @@ packages: description: name: path_provider sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.1.5" path_provider_android: @@ -1149,7 +1149,7 @@ packages: description: name: path_provider_android sha256: "993381400e94d18469750e5b9dcb8206f15bc09f9da86b9e44a9b0092a0066db" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.2.18" path_provider_foundation: @@ -1157,7 +1157,7 @@ packages: description: name: path_provider_foundation sha256: "16eef174aacb07e09c351502740fa6254c165757638eba1e9116b0a781201bbd" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.4.2" path_provider_linux: @@ -1165,7 +1165,7 @@ packages: description: name: path_provider_linux sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.2.1" path_provider_platform_interface: @@ -1173,7 +1173,7 @@ packages: description: name: path_provider_platform_interface sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.1.2" path_provider_windows: @@ -1181,7 +1181,7 @@ packages: description: name: path_provider_windows sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.3.0" permission_handler: @@ -1189,7 +1189,7 @@ packages: description: name: permission_handler sha256: bc917da36261b00137bbc8896bf1482169cd76f866282368948f032c8c1caae1 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "12.0.1" permission_handler_android: @@ -1197,7 +1197,7 @@ packages: description: name: permission_handler_android sha256: "1e3bc410ca1bf84662104b100eb126e066cb55791b7451307f9708d4007350e6" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "13.0.1" permission_handler_apple: @@ -1205,7 +1205,7 @@ packages: description: name: permission_handler_apple sha256: f000131e755c54cf4d84a5d8bd6e4149e262cc31c5a8b1d698de1ac85fa41023 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "9.4.7" permission_handler_html: @@ -1213,7 +1213,7 @@ packages: description: name: permission_handler_html sha256: "38f000e83355abb3392140f6bc3030660cfaef189e1f87824facb76300b4ff24" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.1.3+5" permission_handler_platform_interface: @@ -1221,7 +1221,7 @@ packages: description: name: permission_handler_platform_interface sha256: eb99b295153abce5d683cac8c02e22faab63e50679b937fa1bf67d58bb282878 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "4.3.0" permission_handler_windows: @@ -1229,7 +1229,7 @@ packages: description: name: permission_handler_windows sha256: "1a790728016f79a41216d88672dbc5df30e686e811ad4e698bfc51f76ad91f1e" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.2.1" petitparser: @@ -1237,7 +1237,7 @@ packages: description: name: petitparser sha256: "1a97266a94f7350d30ae522c0af07890c70b8e62c71e8e3920d1db4d23c057d1" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "7.0.1" platform: @@ -1245,7 +1245,7 @@ packages: description: name: platform sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.1.6" plugin_platform_interface: @@ -1253,7 +1253,7 @@ packages: description: name: plugin_platform_interface sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.1.8" posix: @@ -1261,7 +1261,7 @@ packages: description: name: posix sha256: "6323a5b0fa688b6a010df4905a56b00181479e6d10534cecfecede2aa55add61" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "6.0.3" pretty_dio_logger: @@ -1269,7 +1269,7 @@ packages: description: name: pretty_dio_logger sha256: "36f2101299786d567869493e2f5731de61ce130faa14679473b26905a92b6407" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.4.0" provider: @@ -1277,7 +1277,7 @@ packages: description: name: provider sha256: "4e82183fa20e5ca25703ead7e05de9e4cceed1fbd1eadc1ac3cb6f565a09f272" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "6.1.5+1" pull_to_refresh: @@ -1285,7 +1285,7 @@ packages: description: name: pull_to_refresh sha256: bbadd5a931837b57739cf08736bea63167e284e71fb23b218c8c9a6e042aad12 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.0.0" rational: @@ -1293,7 +1293,7 @@ packages: description: name: rational sha256: cb808fb6f1a839e6fc5f7d8cb3b0a10e1db48b3be102de73938c627f0b636336 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.2.3" rxdart: @@ -1301,7 +1301,7 @@ packages: description: name: rxdart sha256: "5c3004a4a8dbb94bd4bf5412a4def4acdaa12e12f269737a5751369e12d1a962" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.28.0" shared_preferences: @@ -1309,7 +1309,7 @@ packages: description: name: shared_preferences sha256: "6e8bf70b7fef813df4e9a36f658ac46d107db4b4cfe1048b477d4e453a8159f5" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.5.3" shared_preferences_android: @@ -1317,7 +1317,7 @@ packages: description: name: shared_preferences_android sha256: a2608114b1ffdcbc9c120eb71a0e207c71da56202852d4aab8a5e30a82269e74 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.4.12" shared_preferences_foundation: @@ -1325,7 +1325,7 @@ packages: description: name: shared_preferences_foundation sha256: "6a52cfcdaeac77cad8c97b539ff688ccfc458c007b4db12be584fbe5c0e49e03" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.5.4" shared_preferences_linux: @@ -1333,7 +1333,7 @@ packages: description: name: shared_preferences_linux sha256: "580abfd40f415611503cae30adf626e6656dfb2f0cee8f465ece7b6defb40f2f" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.4.1" shared_preferences_platform_interface: @@ -1341,7 +1341,7 @@ packages: description: name: shared_preferences_platform_interface sha256: "57cbf196c486bc2cf1f02b85784932c6094376284b3ad5779d1b1c6c6a816b80" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.4.1" shared_preferences_web: @@ -1349,7 +1349,7 @@ packages: description: name: shared_preferences_web sha256: c49bd060261c9a3f0ff445892695d6212ff603ef3115edbb448509d407600019 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.4.3" shared_preferences_windows: @@ -1357,7 +1357,7 @@ packages: description: name: shared_preferences_windows sha256: "94ef0f72b2d71bc3e700e025db3710911bd51a71cefb65cc609dd0d9a982e3c1" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.4.1" sign_in_with_apple: @@ -1365,7 +1365,7 @@ packages: description: name: sign_in_with_apple sha256: "8bd875c8e8748272749eb6d25b896f768e7e9d60988446d543fe85a37a2392b8" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "7.0.1" sign_in_with_apple_platform_interface: @@ -1373,7 +1373,7 @@ packages: description: name: sign_in_with_apple_platform_interface sha256: "981bca52cf3bb9c3ad7ef44aace2d543e5c468bb713fd8dda4275ff76dfa6659" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.0.0" sign_in_with_apple_web: @@ -1381,7 +1381,7 @@ packages: description: name: sign_in_with_apple_web sha256: f316400827f52cafcf50d00e1a2e8a0abc534ca1264e856a81c5f06bd5b10fed - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.0.0" sky_engine: @@ -1394,7 +1394,7 @@ packages: description: name: source_span sha256: "254ee5351d6cb365c859e20ee823c3bb479bf4a293c22d17a9f1bf144ce86f7c" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.10.1" sp_util: @@ -1402,7 +1402,7 @@ packages: description: name: sp_util sha256: "9da43dce5de79c17a787d0626bf01538d63090ca32521200d22a232171c495dc" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.0.3" sprintf: @@ -1410,7 +1410,7 @@ packages: description: name: sprintf sha256: "1fc9ffe69d4df602376b52949af107d8f5703b77cda567c4d7d86a0693120f23" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "7.0.0" sqflite: @@ -1418,7 +1418,7 @@ packages: description: name: sqflite sha256: e2297b1da52f127bc7a3da11439985d9b536f75070f3325e62ada69a5c585d03 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.4.2" sqflite_android: @@ -1426,7 +1426,7 @@ packages: description: name: sqflite_android sha256: "2b3070c5fa881839f8b402ee4a39c1b4d561704d4ebbbcfb808a119bc2a1701b" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.4.1" sqflite_common: @@ -1434,7 +1434,7 @@ packages: description: name: sqflite_common sha256: "6ef422a4525ecc601db6c0a2233ff448c731307906e92cabc9ba292afaae16a6" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.5.6" sqflite_darwin: @@ -1442,7 +1442,7 @@ packages: description: name: sqflite_darwin sha256: "279832e5cde3fe99e8571879498c9211f3ca6391b0d818df4e17d9fff5c6ccb3" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.4.2" sqflite_platform_interface: @@ -1450,7 +1450,7 @@ packages: description: name: sqflite_platform_interface sha256: "8dd4515c7bdcae0a785b0062859336de775e8c65db81ae33dd5445f35be61920" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.4.0" stack_trace: @@ -1458,7 +1458,7 @@ packages: description: name: stack_trace sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.12.1" stream_channel: @@ -1466,7 +1466,7 @@ packages: description: name: stream_channel sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.1.4" string_scanner: @@ -1474,7 +1474,7 @@ packages: description: name: string_scanner sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.4.1" synchronized: @@ -1482,7 +1482,7 @@ packages: description: name: synchronized sha256: c254ade258ec8282947a0acbbc90b9575b4f19673533ee46f2f6e9b3aeefd7c0 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.4.0" term_glyph: @@ -1490,7 +1490,7 @@ packages: description: name: term_glyph sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.2.2" test_api: @@ -1498,7 +1498,7 @@ packages: description: name: test_api sha256: fb31f383e2ee25fbbfe06b40fe21e1e458d14080e3c67e7ba0acfde4df4e0bbd - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.7.4" timezone: @@ -1506,7 +1506,7 @@ packages: description: name: timezone sha256: dd14a3b83cfd7cb19e7888f1cbc20f258b8d71b54c06f79ac585f14093a287d1 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.10.1" typed_data: @@ -1514,7 +1514,7 @@ packages: description: name: typed_data sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.4.0" universal_io: @@ -1522,7 +1522,7 @@ packages: description: name: universal_io sha256: "1722b2dcc462b4b2f3ee7d188dad008b6eb4c40bbd03a3de451d82c78bba9aad" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.2.2" url_launcher: @@ -1530,23 +1530,23 @@ packages: description: name: url_launcher sha256: f6a7e5c4835bb4e3026a04793a4199ca2d14c739ec378fdfe23fc8075d0439f8 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "6.3.2" url_launcher_android: dependency: transitive description: name: url_launcher_android - sha256: "69ee86740f2847b9a4ba6cffa74ed12ce500bbe2b07f3dc1e643439da60637b7" - url: "https://pub.flutter-io.cn" + sha256: "81777b08c498a292d93ff2feead633174c386291e35612f8da438d6e92c4447e" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted - version: "6.3.18" + version: "6.3.20" url_launcher_ios: dependency: transitive description: name: url_launcher_ios sha256: d80b3f567a617cb923546034cc94bfe44eb15f989fe670b37f26abdb9d939cb7 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "6.3.4" url_launcher_linux: @@ -1554,7 +1554,7 @@ packages: description: name: url_launcher_linux sha256: "4e9ba368772369e3e08f231d2301b4ef72b9ff87c31192ef471b380ef29a4935" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.2.1" url_launcher_macos: @@ -1562,7 +1562,7 @@ packages: description: name: url_launcher_macos sha256: c043a77d6600ac9c38300567f33ef12b0ef4f4783a2c1f00231d2b1941fea13f - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.2.3" url_launcher_platform_interface: @@ -1570,7 +1570,7 @@ packages: description: name: url_launcher_platform_interface sha256: "552f8a1e663569be95a8190206a38187b531910283c3e982193e4f2733f01029" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.3.2" url_launcher_web: @@ -1578,7 +1578,7 @@ packages: description: name: url_launcher_web sha256: "4bd2b7b4dc4d4d0b94e5babfffbca8eac1a126c7f3d6ecbc1a11013faa3abba2" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.4.1" url_launcher_windows: @@ -1586,7 +1586,7 @@ packages: description: name: url_launcher_windows sha256: "3284b6d2ac454cf34f114e1d3319866fdd1e19cdc329999057e44ffe936cfa77" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.1.4" uuid: @@ -1594,7 +1594,7 @@ packages: description: name: uuid sha256: a5be9ef6618a7ac1e964353ef476418026db906c4facdedaa299b7a2e71690ff - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "4.5.1" vector_math: @@ -1602,7 +1602,7 @@ packages: description: name: vector_math sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.1.4" video_player: @@ -1610,7 +1610,7 @@ packages: description: name: video_player sha256: "0d55b1f1a31e5ad4c4967bfaa8ade0240b07d20ee4af1dfef5f531056512961a" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.10.0" video_player_android: @@ -1618,7 +1618,7 @@ packages: description: name: video_player_android sha256: "59e5a457ddcc1688f39e9aef0efb62aa845cf0cbbac47e44ac9730dc079a2385" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.8.13" video_player_avfoundation: @@ -1626,7 +1626,7 @@ packages: description: name: video_player_avfoundation sha256: f9a780aac57802b2892f93787e5ea53b5f43cc57dc107bee9436458365be71cd - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.8.4" video_player_platform_interface: @@ -1634,7 +1634,7 @@ packages: description: name: video_player_platform_interface sha256: cf2a1d29a284db648fd66cbd18aacc157f9862d77d2cc790f6f9678a46c1db5a - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "6.4.0" video_player_web: @@ -1642,7 +1642,7 @@ packages: description: name: video_player_web sha256: "9f3c00be2ef9b76a95d94ac5119fb843dca6f2c69e6c9968f6f2b6c9e7afbdeb" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.4.0" visibility_detector: @@ -1650,7 +1650,7 @@ packages: description: name: visibility_detector sha256: dd5cc11e13494f432d15939c3aa8ae76844c42b723398643ce9addb88a5ed420 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "0.4.0+2" vm_service: @@ -1658,31 +1658,31 @@ packages: description: name: vm_service sha256: ddfa8d30d89985b96407efce8acbdd124701f96741f2d981ca860662f1c0dc02 - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "15.0.0" wakelock_plus: dependency: "direct main" description: name: wakelock_plus - sha256: a474e314c3e8fb5adef1f9ae2d247e57467ad557fa7483a2b895bc1b421c5678 - url: "https://pub.flutter-io.cn" + sha256: "61713aa82b7f85c21c9f4cd0a148abd75f38a74ec645fcb1e446f882c82fd09b" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted - version: "1.3.2" + version: "1.3.3" wakelock_plus_platform_interface: dependency: transitive description: name: wakelock_plus_platform_interface - sha256: e10444072e50dbc4999d7316fd303f7ea53d31c824aa5eb05d7ccbdd98985207 - url: "https://pub.flutter-io.cn" + sha256: "036deb14cd62f558ca3b73006d52ce049fabcdcb2eddfe0bf0fe4e8a943b5cf2" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted - version: "1.2.3" + version: "1.3.0" web: dependency: transitive description: name: web sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.1.1" webview_flutter: @@ -1690,7 +1690,7 @@ packages: description: name: webview_flutter sha256: c3e4fe614b1c814950ad07186007eff2f2e5dd2935eba7b9a9a1af8e5885f1ba - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "4.13.0" webview_flutter_android: @@ -1698,7 +1698,7 @@ packages: description: name: webview_flutter_android sha256: "9a25f6b4313978ba1c2cda03a242eea17848174912cfb4d2d8ee84a556f248e3" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "4.10.1" webview_flutter_platform_interface: @@ -1706,7 +1706,7 @@ packages: description: name: webview_flutter_platform_interface sha256: "63d26ee3aca7256a83ccb576a50272edd7cfc80573a4305caa98985feb493ee0" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.14.0" webview_flutter_wkwebview: @@ -1714,7 +1714,7 @@ packages: description: name: webview_flutter_wkwebview sha256: fb46db8216131a3e55bcf44040ca808423539bc6732e7ed34fb6d8044e3d512f - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.23.0" win32: @@ -1722,7 +1722,7 @@ packages: description: name: win32 sha256: "66814138c3562338d05613a6e368ed8cfb237ad6d64a9e9334be3f309acfca03" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "5.14.0" win32_registry: @@ -1730,7 +1730,7 @@ packages: description: name: win32_registry sha256: "6f1b564492d0147b330dd794fee8f512cec4977957f310f9951b5f9d83618dae" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "2.1.0" xdg_directories: @@ -1738,7 +1738,7 @@ packages: description: name: xdg_directories sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "1.1.0" xml: @@ -1746,7 +1746,7 @@ packages: description: name: xml sha256: "971043b3a0d3da28727e40ed3e0b5d18b742fa5a68665cca88e74b7876d5e025" - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "6.6.1" yaml: @@ -1754,9 +1754,9 @@ packages: description: name: yaml sha256: b9da305ac7c39faa3f030eccd175340f968459dae4af175130b3fc47e40d76ce - url: "https://pub.flutter-io.cn" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" source: hosted version: "3.1.3" sdks: dart: ">=3.8.1 <4.0.0" - flutter: ">=3.29.0" + flutter: ">=3.32.0"