fix iphone view

This commit is contained in:
2020-10-19 17:09:24 +06:30
parent 4acc1d9465
commit 453cb71fa8
3 changed files with 5 additions and 3 deletions

View File

@@ -11,7 +11,7 @@
<key>CFBundleInfoDictionaryVersion</key> <key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string> <string>6.0</string>
<key>CFBundleName</key> <key>CFBundleName</key>
<string>FCS</string> <string>FCS Dev</string>
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
@@ -35,6 +35,8 @@
<true/> <true/>
<key>NSCameraUsageDescription</key> <key>NSCameraUsageDescription</key>
<string>Camera permission is required for barcode scanning.</string> <string>Camera permission is required for barcode scanning.</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>Photo library usage is required for FCS team to upload package photos</string>
<key>UIBackgroundModes</key> <key>UIBackgroundModes</key>
<array> <array>
<string>fetch</string> <string>fetch</string>

View File

@@ -114,7 +114,7 @@ class _ContactPageState extends State<ContactPage> {
} }
_call(String phone) { _call(String phone) {
launch("tel:$phone"); launch("tel:${phone.trim().replaceAll(' ', '')}");
} }
_email(String email) { _email(String email) {

View File

@@ -129,7 +129,7 @@ class _FAQListPageState extends State<FAQListPage>
context, context,
faq.answer(isEng), faq.answer(isEng),
fontSize: 16, fontSize: 16,
fontWeight: FontWeight.w200, fontWeight: FontWeight.w400,
), ),
_pageLink( _pageLink(
faq.pageLink, faq.pageLink,