From 61d0ad21e7ce56feb8382ddae42324178d9d2194 Mon Sep 17 00:00:00 2001 From: "Md. Ariful ISlam" Date: Thu, 16 Mar 2023 14:53:35 +0600 Subject: [PATCH 1/3] term text change --- ios/Flutter/AppFrameworkInfo.plist | 2 +- ios/Runner.xcodeproj/project.pbxproj | 12 +++++++----- .../xcshareddata/xcschemes/Runner.xcscheme | 2 +- ios/Runner/Info.plist | 4 ++++ 4 files changed, 13 insertions(+), 7 deletions(-) diff --git a/ios/Flutter/AppFrameworkInfo.plist b/ios/Flutter/AppFrameworkInfo.plist index 6b4c0f78..4f8d4d24 100644 --- a/ios/Flutter/AppFrameworkInfo.plist +++ b/ios/Flutter/AppFrameworkInfo.plist @@ -21,6 +21,6 @@ CFBundleVersion 1.0 MinimumOSVersion - 8.0 + 11.0 diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj index f609ace5..302ab690 100644 --- a/ios/Runner.xcodeproj/project.pbxproj +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -3,7 +3,7 @@ archiveVersion = 1; classes = { }; - objectVersion = 46; + objectVersion = 54; objects = { /* Begin PBXBuildFile section */ @@ -135,7 +135,7 @@ 97C146E61CF9000F007C117D /* Project object */ = { isa = PBXProject; attributes = { - LastUpgradeCheck = 1020; + LastUpgradeCheck = 1300; ORGANIZATIONNAME = ""; TargetAttributes = { 97C146ED1CF9000F007C117D = { @@ -179,6 +179,7 @@ /* Begin PBXShellScriptBuildPhase section */ 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; buildActionMask = 2147483647; files = ( ); @@ -193,6 +194,7 @@ }; 9740EEB61CF901F6004384FC /* Run Script */ = { isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; buildActionMask = 2147483647; files = ( ); @@ -280,7 +282,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; MTL_ENABLE_DEBUG_INFO = NO; SDKROOT = iphoneos; SUPPORTED_PLATFORMS = iphoneos; @@ -362,7 +364,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; SDKROOT = iphoneos; @@ -411,7 +413,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; MTL_ENABLE_DEBUG_INFO = NO; SDKROOT = iphoneos; SUPPORTED_PLATFORMS = iphoneos; diff --git a/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme index a28140cf..3db53b6e 100644 --- a/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +++ b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -1,6 +1,6 @@ UIViewControllerBasedStatusBarAppearance + CADisableMinimumFrameDurationOnPhone + + UIApplicationSupportsIndirectInputEvents + From 8b6def23872b79cba956f0b17ce7e1832f2dc04e Mon Sep 17 00:00:00 2001 From: "Md. Ariful ISlam" Date: Thu, 16 Mar 2023 14:53:39 +0600 Subject: [PATCH 2/3] Update body.dart --- lib/screens/sign_up/components/body.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/screens/sign_up/components/body.dart b/lib/screens/sign_up/components/body.dart index ced070b6..c0faa3d4 100644 --- a/lib/screens/sign_up/components/body.dart +++ b/lib/screens/sign_up/components/body.dart @@ -45,7 +45,7 @@ class Body extends StatelessWidget { ), SizedBox(height: getProportionateScreenHeight(20)), Text( - 'By continuing your confirm that you agree \nwith our Term and Condition', + 'You agree with our \nTerm and Condition', textAlign: TextAlign.center, style: Theme.of(context).textTheme.caption, ) From 60faa275d5f9098d28a37c32ebb6752810236499 Mon Sep 17 00:00:00 2001 From: "Md. Ariful ISlam" Date: Thu, 16 Mar 2023 15:07:07 +0600 Subject: [PATCH 3/3] text change email and password --- lib/screens/sign_up/components/sign_up_form.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/screens/sign_up/components/sign_up_form.dart b/lib/screens/sign_up/components/sign_up_form.dart index 3113248d..cd5e9432 100644 --- a/lib/screens/sign_up/components/sign_up_form.dart +++ b/lib/screens/sign_up/components/sign_up_form.dart @@ -120,7 +120,7 @@ class _SignUpFormState extends State { }, decoration: InputDecoration( labelText: "Password", - hintText: "Enter your password", + hintText: "Enter password", // If you are using latest version of flutter then lable text and hint text shown like this // if you r using flutter less then 1.20.* then maybe this is not working properly floatingLabelBehavior: FloatingLabelBehavior.always, @@ -153,7 +153,7 @@ class _SignUpFormState extends State { }, decoration: InputDecoration( labelText: "Email", - hintText: "Enter your email", + hintText: "Enter email", // If you are using latest version of flutter then lable text and hint text shown like this // if you r using flutter less then 1.20.* then maybe this is not working properly floatingLabelBehavior: FloatingLabelBehavior.always,