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,7 +503,7 @@ | ||
503 | "$(inherited)", | 503 | "$(inherited)", |
504 | "@executable_path/Frameworks", | 504 | "@executable_path/Frameworks", |
505 | ); | 505 | ); |
506 | - MARKETING_VERSION = 1.0.1; | 506 | + MARKETING_VERSION = 1.0.2; |
507 | PRODUCT_BUNDLE_IDENTIFIER = com.kouyuxingqiu.wowenglish; | 507 | PRODUCT_BUNDLE_IDENTIFIER = com.kouyuxingqiu.wowenglish; |
508 | PRODUCT_NAME = "$(TARGET_NAME)"; | 508 | PRODUCT_NAME = "$(TARGET_NAME)"; |
509 | SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; | 509 | SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; |
@@ -688,7 +688,7 @@ | @@ -688,7 +688,7 @@ | ||
688 | "$(inherited)", | 688 | "$(inherited)", |
689 | "@executable_path/Frameworks", | 689 | "@executable_path/Frameworks", |
690 | ); | 690 | ); |
691 | - MARKETING_VERSION = 1.0.1; | 691 | + MARKETING_VERSION = 1.0.2; |
692 | PRODUCT_BUNDLE_IDENTIFIER = com.kouyuxingqiu.wowenglish; | 692 | PRODUCT_BUNDLE_IDENTIFIER = com.kouyuxingqiu.wowenglish; |
693 | PRODUCT_NAME = "$(TARGET_NAME)"; | 693 | PRODUCT_NAME = "$(TARGET_NAME)"; |
694 | SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; | 694 | SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; |
@@ -717,7 +717,7 @@ | @@ -717,7 +717,7 @@ | ||
717 | "$(inherited)", | 717 | "$(inherited)", |
718 | "@executable_path/Frameworks", | 718 | "@executable_path/Frameworks", |
719 | ); | 719 | ); |
720 | - MARKETING_VERSION = 1.0.1; | 720 | + MARKETING_VERSION = 1.0.2; |
721 | PRODUCT_BUNDLE_IDENTIFIER = com.kouyuxingqiu.wowenglish; | 721 | PRODUCT_BUNDLE_IDENTIFIER = com.kouyuxingqiu.wowenglish; |
722 | PRODUCT_NAME = "$(TARGET_NAME)"; | 722 | PRODUCT_NAME = "$(TARGET_NAME)"; |
723 | SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; | 723 | SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; |
lib/pages/home/widgets/home_vidoe_item.dart
@@ -56,6 +56,7 @@ class HomeVideoItem extends StatelessWidget { | @@ -56,6 +56,7 @@ class HomeVideoItem extends StatelessWidget { | ||
56 | padding: EdgeInsets.symmetric(horizontal: 10.w), | 56 | padding: EdgeInsets.symmetric(horizontal: 10.w), |
57 | child: Text( | 57 | child: Text( |
58 | lessons?.name??'', | 58 | lessons?.name??'', |
59 | + maxLines: 1, | ||
59 | style: TextStyle( | 60 | style: TextStyle( |
60 | fontSize: 25.sp, | 61 | fontSize: 25.sp, |
61 | color: const Color(0xFF333333) | 62 | color: const Color(0xFF333333) |
lib/pages/user/user_page.dart
@@ -124,17 +124,14 @@ class _UserView extends StatelessWidget { | @@ -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,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev | ||
16 | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html | 16 | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html |
17 | # In Windows, build-name is used as the major, minor, and patch parts | 17 | # In Windows, build-name is used as the major, minor, and patch parts |
18 | # of the product and file versions while build-number is used as the build suffix. | 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 | environment: | 21 | environment: |
22 | sdk: '>=3.0.0 <4.0.0' | 22 | sdk: '>=3.0.0 <4.0.0' |