Commit 20ce304275261088b04a83f6483f7fd5192efb7c

Authored by 常守达
1 parent a9c81df4

feat(ui): 文案修改;Platform去掉调试

@@ -264,7 +264,7 @@ class MembershipOfferView extends GetView<MembershipOfferController> { @@ -264,7 +264,7 @@ class MembershipOfferView extends GetView<MembershipOfferController> {
264 String _planSubtitleOhos(PayProduct product) { 264 String _planSubtitleOhos(PayProduct product) {
265 final monthly = (product.price ?? 0) / 100.0 / 12; 265 final monthly = (product.price ?? 0) / 100.0 / 12;
266 266
267 - return l10n.purchaseMonthlyUnitPrice(monthly.toStringAsFixed(2)); 267 + return l10n.purchaseMonthlyUnitPrice(${monthly.toStringAsFixed(2)}');
268 } 268 }
269 269
270 String? _nonEmpty(String? value) { 270 String? _nonEmpty(String? value) {
1 import 'dart:io'; 1 import 'dart:io';
2 2
3 bool isOhos() { 3 bool isOhos() {
4 - // return Platform.isOhos;  
5 - return true; 4 + return Platform.isOhos;
  5 + // return true;
6 } 6 }
7 7
8 bool isIOS() { 8 bool isIOS() {
9 - // return Pltform.isIOS;  
10 - return false; 9 + return Platform.isIOS;
  10 + // return false;
11 } 11 }