Commit 2e5751abfadb006e85ea5ca49f9a45a04fecdd4f
1 parent
bc0550ae
feat:更新版本号1.0.2
Showing
4 changed files
with
12 additions
and
14 deletions
ios/Runner.xcodeproj/project.pbxproj
... | ... | @@ -503,7 +503,7 @@ |
503 | 503 | "$(inherited)", |
504 | 504 | "@executable_path/Frameworks", |
505 | 505 | ); |
506 | - MARKETING_VERSION = 1.0.1; | |
506 | + MARKETING_VERSION = 1.0.2; | |
507 | 507 | PRODUCT_BUNDLE_IDENTIFIER = com.kouyuxingqiu.wowenglish; |
508 | 508 | PRODUCT_NAME = "$(TARGET_NAME)"; |
509 | 509 | SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; |
... | ... | @@ -688,7 +688,7 @@ |
688 | 688 | "$(inherited)", |
689 | 689 | "@executable_path/Frameworks", |
690 | 690 | ); |
691 | - MARKETING_VERSION = 1.0.1; | |
691 | + MARKETING_VERSION = 1.0.2; | |
692 | 692 | PRODUCT_BUNDLE_IDENTIFIER = com.kouyuxingqiu.wowenglish; |
693 | 693 | PRODUCT_NAME = "$(TARGET_NAME)"; |
694 | 694 | SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; |
... | ... | @@ -717,7 +717,7 @@ |
717 | 717 | "$(inherited)", |
718 | 718 | "@executable_path/Frameworks", |
719 | 719 | ); |
720 | - MARKETING_VERSION = 1.0.1; | |
720 | + MARKETING_VERSION = 1.0.2; | |
721 | 721 | PRODUCT_BUNDLE_IDENTIFIER = com.kouyuxingqiu.wowenglish; |
722 | 722 | PRODUCT_NAME = "$(TARGET_NAME)"; |
723 | 723 | SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; | ... | ... |
lib/pages/home/widgets/home_vidoe_item.dart
lib/pages/user/user_page.dart
... | ... | @@ -124,17 +124,14 @@ class _UserView extends StatelessWidget { |
124 | 124 | ) |
125 | 125 | ], |
126 | 126 | )), |
127 | - Offstage( | |
128 | - offstage: UserUtil.getUser()?.phoneNum == '17730280759', | |
129 | - child: TextButton( | |
130 | - child: Text( | |
131 | - "修改个人信息>", | |
132 | - style: textStyle21sp, | |
133 | - ), | |
134 | - onPressed: () { | |
135 | - pushNamed(AppRouteName.userInformation); | |
136 | - }, | |
127 | + TextButton( | |
128 | + child: Text( | |
129 | + "修改个人信息>", | |
130 | + style: textStyle21sp, | |
137 | 131 | ), |
132 | + onPressed: () { | |
133 | + pushNamed(AppRouteName.userInformation); | |
134 | + }, | |
138 | 135 | ) |
139 | 136 | ], |
140 | 137 | ), | ... | ... |
pubspec.yaml
... | ... | @@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev |
16 | 16 | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html |
17 | 17 | # In Windows, build-name is used as the major, minor, and patch parts |
18 | 18 | # of the product and file versions while build-number is used as the build suffix. |
19 | -version: 1.0.1+1 | |
19 | +version: 1.0.2+1 | |
20 | 20 | |
21 | 21 | environment: |
22 | 22 | sdk: '>=3.0.0 <4.0.0' | ... | ... |