evan 4 years ago
parent
commit
498f5b111b

+ 19 - 29
lib/my_tools/my_views.dart

@@ -1064,12 +1064,12 @@ class MyViews {
                       Container(
                         child: SvgPicture.asset(
                           'images/svg/第三方.svg',
-                          height: 27,
-                          width: 27,
+                          height: 45,
+                          width: 45,
                         ),
                         margin: EdgeInsets.only(right: 8),
-                        height: 45,
-                        width: 45,
+                        height: 60,
+                        width: 60,
                         decoration: BoxDecoration(
                             border:
                                 Border.all(color: MyColors.cEBEBEB, width: 1)),
@@ -1077,19 +1077,13 @@ class MyViews {
                       ),
                       Expanded(
                         child: Container(
-                          height: 45,
+                          height: 60,
                           child: Column(
                             children: [
-                              Row(
-                                children: [
-                                  MyViews().myText('第三方订单(${data.uid})',
-                                      MyColors.c333333, 13),
-                                  MyViews().myText('付款人:${data.buyerName}',
-                                      MyColors.c333333, 13),
-                                ],
-                                mainAxisAlignment:
-                                    MainAxisAlignment.spaceBetween,
-                              ),
+                              MyViews().myText('第三方订单(${data.uid})',
+                                  MyColors.c333333, 13),
+                              MyViews().myText('付款人:${data.buyerName}',
+                                  MyColors.c333333, 13),
                               Row(
                                 children: [
                                   MyViews().myText(
@@ -1592,30 +1586,25 @@ class MyViews {
             Container(
               child: SvgPicture.asset(
                 'images/svg/第三方.svg',
-                height: 27,
-                width: 27,
+                height: 45,
+                width: 45,
               ),
               margin: EdgeInsets.only(right: 8),
-              height: 45,
-              width: 45,
+              height: 60,
+              width: 60,
               decoration: BoxDecoration(
                   border: Border.all(color: MyColors.cEBEBEB, width: 1)),
               alignment: Alignment.center,
             ),
             Expanded(
               child: Container(
-                height: 45,
+                height: 60,
                 child: Column(
                   children: [
-                    Row(
-                      children: [
-                        MyViews()
-                            .myText('第三方订单(${data.uid})', MyColors.c333333, 13),
-                        MyViews().myText(
-                            '付款人:${data.buyerName}', MyColors.c333333, 13),
-                      ],
-                      mainAxisAlignment: MainAxisAlignment.spaceBetween,
-                    ),
+                    MyViews()
+                        .myText('第三方订单(${data.uid})', MyColors.c333333, 13),
+                    MyViews().myText(
+                        '付款人:${data.buyerName}', MyColors.c333333, 13),
                     Row(
                       children: [
                         MyViews()
@@ -2107,6 +2096,7 @@ Widget noData() {
         Container(
           child: Image.asset('images/no_data.png'),
           alignment: Alignment.center,
+          margin: EdgeInsets.only(top: 40),
         ),
         Container(
           child: MyViews().myText('暂无信息', MyColors.c999999, 16),

+ 0 - 1
lib/paegs/alipay_page/alipay_page.dart

@@ -107,7 +107,6 @@ class _AlipayPageState extends State<AlipayPage> with WidgetsBindingObserver {
           ..alignment = Alignment.center
           ..loadingStyle = EasyLoadingStyle.light
           ..contentMargin = EdgeInsets.all(20);
-        EasyLoading.show();
         aliPay(entity.data).then((value) {
           print(json.encode(value));
           AlipayResultBeanEntity e = AlipayResultBeanEntity()

+ 4 - 4
lib/paegs/gang_page/gang_in_page/gang_in_page.dart

@@ -573,7 +573,7 @@ class _GangInPageState extends State<GangInPage> {
           enablePullDown: true,
           enablePullUp: true,
           child: goods.length == 0
-              ? noData()
+              ? SingleChildScrollView(child: noData())
               : GridView.builder(
                   gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
                       crossAxisCount: 2, //每行三列
@@ -597,7 +597,7 @@ class _GangInPageState extends State<GangInPage> {
           enablePullDown: true,
           enablePullUp: true,
           child: orders.length == 0
-              ? noData()
+              ? SingleChildScrollView(child: noData())
               : ListView.builder(
                   itemBuilder: (c, index) {
                     return Slidable(
@@ -649,7 +649,7 @@ class _GangInPageState extends State<GangInPage> {
           enablePullDown: true,
           enablePullUp: true,
           child: orders.length == 0
-              ? noData()
+              ? SingleChildScrollView(child: noData())
               : ListView.builder(
                   itemBuilder: (c, index) {
                     return MyViews().getNoPayGoodsItem(
@@ -661,7 +661,7 @@ class _GangInPageState extends State<GangInPage> {
         ),
       );
     } else {
-      return noData();
+      return SingleChildScrollView(child: noData());
     }
   }
 

+ 1 - 1
lib/paegs/gang_page/gang_in_page/gang_order_page/gang_order_page.dart

@@ -148,7 +148,7 @@ class _GangOrderPageState extends State<GangOrderPage> {
               enablePullUp: true,
               enablePullDown: true,
               child: orders.length == 0
-                  ? noData()
+                  ? SingleChildScrollView(child: noData())
                   : ListView.builder(
                       itemBuilder: (c, index) {
                         return Slidable(

+ 2 - 2
lib/paegs/guest_login_page/home_page.dart

@@ -280,7 +280,7 @@ class _HomePage1State extends State<HomePage1>
   body1() {
     double w = (MediaQuery.of(context).size.width - 28 - 8) / 2;
     if (goods.length == 0) {
-      return noData();
+      return SingleChildScrollView(child: noData());
     } else {
       return GridView.builder(
           controller: _controller,
@@ -382,7 +382,7 @@ class _HomePage1State extends State<HomePage1>
 
   body2() {
     if (shops.length == 0) {
-      return noData();
+      return SingleChildScrollView(child: noData());
     } else {
       return ListView.builder(
         controller: _controller,

+ 2 - 2
lib/paegs/home_page/home_page.dart

@@ -652,7 +652,7 @@ class _HomePageState extends State<HomePage>
 
   body1() {
     if (data.length == 0) {
-      return noData();
+      return SingleChildScrollView(child: noData());
     } else {
       return GridView.builder(
           controller: _controller,
@@ -671,7 +671,7 @@ class _HomePageState extends State<HomePage>
 
   body2() {
     if (puShop.length == 0) {
-      return noData();
+      return SingleChildScrollView(child: noData());
     } else {
       return ListView.builder(
         controller: _controller,

+ 1 - 1
lib/paegs/mine_page/advertising_page/advertising_page.dart

@@ -48,7 +48,7 @@ class _AdvertisingPageState extends State<AdvertisingPage> {
               enablePullDown: true,
               controller: controller,
               child: data.length == 0
-                  ? noData()
+                  ? SingleChildScrollView(child: noData())
                   : GridView.builder(
                       gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
                           crossAxisCount: 2,

+ 1 - 1
lib/paegs/mine_page/advertising_page/related_products_page.dart

@@ -35,7 +35,7 @@ class _RelatedProductsPageState extends State<RelatedProductsPage> {
           MyViews().myAppBar('关联商品', context, []),
           Expanded(
             child: data.length == 0
-                ? noData()
+                ? SingleChildScrollView(child: noData())
                 : ListView.builder(
               itemBuilder: (c, index) {
                 return GestureDetector(

+ 1 - 1
lib/paegs/mine_page/my_goods_page/my_goods_page.dart

@@ -68,7 +68,7 @@ class _MyGoodsPageState extends State<MyGoodsPage> {
               enablePullDown: true,
               enablePullUp: true,
               child: data.length == 0
-                  ? noData()
+                  ? SingleChildScrollView(child: noData())
                   : ListView.builder(
                       itemBuilder: (c, index) {
                         return Slidable(

+ 1 - 1
lib/paegs/mine_page/order_page/order_page.dart

@@ -147,7 +147,7 @@ class _OrderPageState extends State<OrderPage> {
               enablePullUp: true,
               enablePullDown: true,
               child: orders.length == 0
-                  ? noData()
+                  ? SingleChildScrollView(child: noData())
                   : ListView.builder(
                       itemBuilder: (c, index) {
                         return Slidable(

+ 1 - 1
lib/paegs/mine_page/wallet_page/wallet_page.dart

@@ -254,7 +254,7 @@ class _WalletPageState extends State<WalletPage> {
               enablePullDown: true,
               enablePullUp: true,
               child: flow.length == 0
-                  ? noData()
+                  ? SingleChildScrollView(child: noData())
                   : ListView.builder(
                       itemBuilder: (c, index) {
                         return MyViews().getWalletItem(flow[index], context);

+ 1 - 1
lib/paegs/msg_page/msg_page.dart

@@ -239,7 +239,7 @@ class _MsgPageState extends State<MsgPage> with AutomaticKeepAliveClientMixin {
                 onRefresh: onRefresh,
                 controller: controller,
                 child: lastMsg.length == 0 && !haveSysMsg
-                    ? noData()
+                    ? SingleChildScrollView(child: noData())
                     : ListView.builder(
                         itemBuilder: (c, index) {
                           // if (index == 0) {

+ 1 - 1
lib/paegs/other_people_s_turnover_page/other_people_s_turnover_page.dart

@@ -112,7 +112,7 @@ class _OtherPeopleSTurnoverPageState extends State<OtherPeopleSTurnoverPage> {
           ),
           Expanded(
             child: flow.length == 0
-                ? noData()
+                ?SingleChildScrollView(child: noData())
                 : ListView.builder(
                     itemBuilder: (c, index) {
                       return MyViews().getWalletItem(flow[index], context);

+ 98 - 98
pubspec.lock

@@ -5,154 +5,154 @@ packages:
     dependency: transitive
     description:
       name: archive
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "3.1.2"
   async:
     dependency: transitive
     description:
       name: async
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.5.0"
   audioplayers:
     dependency: "direct main"
     description:
       name: audioplayers
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "0.18.3"
   azlistview:
     dependency: "direct main"
     description:
       name: azlistview
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.1.1"
   badges:
     dependency: "direct main"
     description:
       name: badges
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.2.0"
   boolean_selector:
     dependency: transitive
     description:
       name: boolean_selector
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.1.0"
   cached_network_image:
     dependency: "direct main"
     description:
       name: cached_network_image
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "3.0.0"
   characters:
     dependency: transitive
     description:
       name: characters
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.1.0"
   charcode:
     dependency: transitive
     description:
       name: charcode
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.2.0"
   clock:
     dependency: transitive
     description:
       name: clock
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.1.0"
   collection:
     dependency: transitive
     description:
       name: collection
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.15.0"
   common_utils:
     dependency: transitive
     description:
       name: common_utils
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.2.4"
   convert:
     dependency: "direct main"
     description:
       name: convert
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.1.1"
   crypto:
     dependency: "direct main"
     description:
       name: crypto
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "3.0.1"
   cupertino_icons:
     dependency: "direct main"
     description:
       name: cupertino_icons
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.0.2"
   decimal:
     dependency: transitive
     description:
       name: decimal
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.0.0+1"
   dio:
     dependency: "direct main"
     description:
       name: dio
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "4.0.0"
   disable_screenshots:
     dependency: "direct main"
     description:
       name: disable_screenshots
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "0.1.0"
   fake_async:
     dependency: transitive
     description:
       name: fake_async
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.2.0"
   ffi:
     dependency: transitive
     description:
       name: ffi
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.0.0"
   file:
     dependency: transitive
     description:
       name: file
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "6.1.0"
   flustars:
     dependency: "direct main"
     description:
       name: flustars
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "0.3.3"
   flutter:
@@ -164,35 +164,35 @@ packages:
     dependency: transitive
     description:
       name: flutter_blurhash
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "0.6.0"
   flutter_cache_manager:
     dependency: transitive
     description:
       name: flutter_cache_manager
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "3.0.1"
   flutter_image_compress:
     dependency: "direct main"
     description:
       name: flutter_image_compress
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "0.7.0"
   flutter_local_notifications:
     dependency: "direct main"
     description:
       name: flutter_local_notifications
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "3.0.3"
   flutter_local_notifications_platform_interface:
     dependency: transitive
     description:
       name: flutter_local_notifications_platform_interface
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.0+1"
   flutter_localizations:
@@ -204,35 +204,35 @@ packages:
     dependency: transitive
     description:
       name: flutter_page_indicator
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "0.0.3"
   flutter_plugin_android_lifecycle:
     dependency: transitive
     description:
       name: flutter_plugin_android_lifecycle
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.1"
   flutter_slidable:
     dependency: "direct main"
     description:
       name: flutter_slidable
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "0.5.7"
   flutter_svg:
     dependency: "direct main"
     description:
       name: flutter_svg
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "0.21.0+1"
   flutter_swiper:
     dependency: "direct main"
     description:
       name: flutter_swiper
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.1.6"
   flutter_test:
@@ -249,287 +249,287 @@ packages:
     dependency: transitive
     description:
       name: http
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "0.13.1"
   http_parser:
     dependency: transitive
     description:
       name: http_parser
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "4.0.0"
   image:
     dependency: transitive
     description:
       name: image
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "3.0.2"
   image_cropper:
     dependency: "direct main"
     description:
       name: image_cropper
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.4.0"
   image_picker:
     dependency: "direct main"
     description:
       name: image_picker
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "0.7.4"
   image_picker_for_web:
     dependency: transitive
     description:
       name: image_picker_for_web
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.0"
   image_picker_platform_interface:
     dependency: transitive
     description:
       name: image_picker_platform_interface
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.0"
   install_plugin:
     dependency: "direct main"
     description:
       name: install_plugin
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.1"
   intl:
     dependency: transitive
     description:
       name: intl
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "0.17.0"
   js:
     dependency: transitive
     description:
       name: js
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "0.6.3"
   logging:
     dependency: transitive
     description:
       name: logging
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.0.1"
   lpinyin:
     dependency: "direct main"
     description:
       name: lpinyin
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.1"
   matcher:
     dependency: transitive
     description:
       name: matcher
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "0.12.10"
   meta:
     dependency: transitive
     description:
       name: meta
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.3.0"
   octo_image:
     dependency: transitive
     description:
       name: octo_image
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.0.0+1"
   package_info:
     dependency: "direct main"
     description:
       name: package_info
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "0.4.3+4"
   path:
     dependency: transitive
     description:
       name: path
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.8.0"
   path_drawing:
     dependency: transitive
     description:
       name: path_drawing
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "0.5.0"
   path_parsing:
     dependency: transitive
     description:
       name: path_parsing
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "0.2.0"
   path_provider:
     dependency: "direct main"
     description:
       name: path_provider
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.1"
   path_provider_linux:
     dependency: transitive
     description:
       name: path_provider_linux
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.0"
   path_provider_macos:
     dependency: transitive
     description:
       name: path_provider_macos
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.0"
   path_provider_platform_interface:
     dependency: transitive
     description:
       name: path_provider_platform_interface
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.0"
   path_provider_windows:
     dependency: transitive
     description:
       name: path_provider_windows
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.0"
   pedantic:
     dependency: transitive
     description:
       name: pedantic
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.11.0"
   petitparser:
     dependency: transitive
     description:
       name: petitparser
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "4.1.0"
   platform:
     dependency: transitive
     description:
       name: platform
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "3.0.0"
   plugin_platform_interface:
     dependency: transitive
     description:
       name: plugin_platform_interface
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.0.3"
   process:
     dependency: transitive
     description:
       name: process
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "4.2.1"
   pull_to_refresh:
     dependency: "direct main"
     description:
       name: pull_to_refresh
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.6.5"
   rational:
     dependency: transitive
     description:
       name: rational
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.0.0"
   rxdart:
     dependency: "direct main"
     description:
       name: rxdart
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "0.26.0"
   scroll_to_index:
     dependency: "direct main"
     description:
       name: scroll_to_index
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.0.6"
   scrollable_positioned_list:
     dependency: transitive
     description:
       name: scrollable_positioned_list
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "0.1.10"
   shared_preferences:
     dependency: "direct main"
     description:
       name: shared_preferences
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.5"
   shared_preferences_linux:
     dependency: transitive
     description:
       name: shared_preferences_linux
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.0"
   shared_preferences_macos:
     dependency: transitive
     description:
       name: shared_preferences_macos
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.0"
   shared_preferences_platform_interface:
     dependency: transitive
     description:
       name: shared_preferences_platform_interface
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.0"
   shared_preferences_web:
     dependency: transitive
     description:
       name: shared_preferences_web
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.0"
   shared_preferences_windows:
     dependency: transitive
     description:
       name: shared_preferences_windows
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.0"
   simple_logger:
     dependency: "direct main"
     description:
       name: simple_logger
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.8.0+1"
   sky_engine:
@@ -541,175 +541,175 @@ packages:
     dependency: transitive
     description:
       name: source_span
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.8.0"
   sp_util:
     dependency: transitive
     description:
       name: sp_util
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.3"
   sqflite:
     dependency: "direct main"
     description:
       name: sqflite
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.0+3"
   sqflite_common:
     dependency: transitive
     description:
       name: sqflite_common
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.0+2"
   stack_trace:
     dependency: transitive
     description:
       name: stack_trace
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.10.0"
   stream_channel:
     dependency: transitive
     description:
       name: stream_channel
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.1.0"
   string_scanner:
     dependency: transitive
     description:
       name: string_scanner
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.1.0"
   synchronized:
     dependency: transitive
     description:
       name: synchronized
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "3.0.0"
   term_glyph:
     dependency: transitive
     description:
       name: term_glyph
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.2.0"
   test_api:
     dependency: transitive
     description:
       name: test_api
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "0.2.19"
   timezone:
     dependency: transitive
     description:
       name: timezone
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "0.5.9"
   tobias:
     dependency: "direct main"
     description:
       name: tobias
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.1.0"
   transformer_page_view:
     dependency: transitive
     description:
       name: transformer_page_view
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "0.1.6"
   typed_data:
     dependency: transitive
     description:
       name: typed_data
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "1.3.0"
   url_launcher:
     dependency: "direct main"
     description:
       name: url_launcher
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "6.0.3"
   url_launcher_linux:
     dependency: transitive
     description:
       name: url_launcher_linux
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.0"
   url_launcher_macos:
     dependency: transitive
     description:
       name: url_launcher_macos
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.0"
   url_launcher_platform_interface:
     dependency: transitive
     description:
       name: url_launcher_platform_interface
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.1"
   url_launcher_web:
     dependency: transitive
     description:
       name: url_launcher_web
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.0"
   url_launcher_windows:
     dependency: transitive
     description:
       name: url_launcher_windows
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.0"
   uuid:
     dependency: "direct main"
     description:
       name: uuid
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "3.0.4"
   vector_math:
     dependency: transitive
     description:
       name: vector_math
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.1.0"
   win32:
     dependency: transitive
     description:
       name: win32
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "2.0.5"
   xdg_directories:
     dependency: transitive
     description:
       name: xdg_directories
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "0.2.0"
   xml:
     dependency: transitive
     description:
       name: xml
-      url: "https://pub.flutter-io.cn"
+      url: "https://pub.dartlang.org"
     source: hosted
     version: "5.1.0"
 sdks: