李卓原

bug fix

1 -# .github/workflows/publish.yml  
2 -name: Publish to pub.dev 1 +name: Publish to Pub.dev
3 2
4 -on:  
5 - push:  
6 - tags:  
7 - # must align with the tag-pattern configured on pub.dev, often just replace  
8 - # with [0-9]+.[0-9]+.[0-9]+*  
9 - - 'v[0-9]+.[0-9]+.[0-9]+*' # tag-pattern on pub.dev: 'v'  
10 - # If you prefer tags like '1.2.3', without the 'v' prefix, then use:  
11 - # - '[0-9]+.[0-9]+.[0-9]+*' # tag-pattern on pub.dev: ''  
12 - # If your repository contains multiple packages consider a pattern like:  
13 - # - 'my_package_name-v[0-9]+.[0-9]+.[0-9]+*' 3 +# 流程触发时机,当有标签创建时触发,如 v1.0.0。当然也可以选择别的触发时机,如 push,release 等
  4 +on: create
14 5
15 -# Publish using the reusable workflow from dart-lang.  
16 jobs: 6 jobs:
17 - publish:  
18 - uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1  
19 - # with:  
20 - # working-directory: path/to/package/within/repository  
  7 + publishing:
  8 + runs-on: ubuntu-latest
  9 + steps:
  10 + # 拉去仓库代码
  11 + - name: "Checkout"
  12 + uses: actions/checkout@v2
  13 + # 发布插件
  14 + - name: Dart and Flutter Package Publisher
  15 + uses: k-paxian/dart-package-publisher@v1.2
  16 + with:
  17 + # 设置发布插件需要的 Token
  18 + accessToken: ${{ secrets.OAUTH_ACCESS_TOKEN }}
  19 + refreshToken: ${{ secrets.OAUTH_REFRESH_TOKEN }}
  1 +# 5.8.4
  2 +- bug fix
  3 +
1 # 5.8.3 4 # 5.8.3
2 - Adapt to flutter3.10 5 - Adapt to flutter3.10
3 6
@@ -21,6 +21,6 @@ @@ -21,6 +21,6 @@
21 <key>CFBundleVersion</key> 21 <key>CFBundleVersion</key>
22 <string>1.0</string> 22 <string>1.0</string>
23 <key>MinimumOSVersion</key> 23 <key>MinimumOSVersion</key>
24 - <string>9.0</string> 24 + <string>11.0</string>
25 </dict> 25 </dict>
26 </plist> 26 </plist>
1 # 1 #
2 -# NOTE: This podspec is NOT to be published. It is only used as a local source! 2 +# This podspec is NOT to be published. It is only used as a local source!
  3 +# This is a generated file; do not edit or check into version control.
3 # 4 #
4 5
5 Pod::Spec.new do |s| 6 Pod::Spec.new do |s|
6 s.name = 'Flutter' 7 s.name = 'Flutter'
7 s.version = '1.0.0' 8 s.version = '1.0.0'
8 - s.summary = 'High-performance, high-fidelity mobile apps.'  
9 - s.description = <<-DESC  
10 -Flutter provides an easy and productive way to build and deploy high-performance mobile apps for Android and iOS.  
11 - DESC  
12 - s.homepage = 'https://flutter.io'  
13 - s.license = { :type => 'MIT' } 9 + s.summary = 'A UI toolkit for beautiful and fast apps.'
  10 + s.homepage = 'https://flutter.dev'
  11 + s.license = { :type => 'BSD' }
14 s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' } 12 s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' }
15 s.source = { :git => 'https://github.com/flutter/engine', :tag => s.version.to_s } 13 s.source = { :git => 'https://github.com/flutter/engine', :tag => s.version.to_s }
16 - s.ios.deployment_target = '8.0'  
17 - s.vendored_frameworks = 'Flutter.framework' 14 + s.ios.deployment_target = '11.0'
  15 + # Framework linking is handled by Flutter tooling, not CocoaPods.
  16 + # Add a placeholder to satisfy `s.dependency 'Flutter'` plugin podspecs.
  17 + s.vendored_frameworks = 'path/to/nothing'
18 end 18 end
@@ -3,11 +3,12 @@ @@ -3,11 +3,12 @@
3 export "FLUTTER_ROOT=/Users/lizhuoyuan/fvm/versions/stable" 3 export "FLUTTER_ROOT=/Users/lizhuoyuan/fvm/versions/stable"
4 export "FLUTTER_APPLICATION_PATH=/Users/lizhuoyuan/Development/Project/flutter_screenutil/example" 4 export "FLUTTER_APPLICATION_PATH=/Users/lizhuoyuan/Development/Project/flutter_screenutil/example"
5 export "COCOAPODS_PARALLEL_CODE_SIGN=true" 5 export "COCOAPODS_PARALLEL_CODE_SIGN=true"
6 -export "FLUTTER_TARGET=lib/main.dart" 6 +export "FLUTTER_TARGET=/Users/lizhuoyuan/Development/Project/flutter_screenutil/example/lib/main.dart"
7 export "FLUTTER_BUILD_DIR=build" 7 export "FLUTTER_BUILD_DIR=build"
8 export "FLUTTER_BUILD_NAME=1.0.0" 8 export "FLUTTER_BUILD_NAME=1.0.0"
9 export "FLUTTER_BUILD_NUMBER=1" 9 export "FLUTTER_BUILD_NUMBER=1"
  10 +export "DART_DEFINES=RkxVVFRFUl9XRUJfQVVUT19ERVRFQ1Q9dHJ1ZQ==,RkxVVFRFUl9XRUJfQ0FOVkFTS0lUX1VSTD1odHRwczovL3d3dy5nc3RhdGljLmNvbS9mbHV0dGVyLWNhbnZhc2tpdC85MGZhM2FlMjhmZTZkZGFlZTFhZjJjMTIwZjAxZTUwMjAxYzE0MDFiLw=="
10 export "DART_OBFUSCATION=false" 11 export "DART_OBFUSCATION=false"
11 export "TRACK_WIDGET_CREATION=true" 12 export "TRACK_WIDGET_CREATION=true"
12 export "TREE_SHAKE_ICONS=false" 13 export "TREE_SHAKE_ICONS=false"
13 -export "PACKAGE_CONFIG=.dart_tool/package_config.json" 14 +export "PACKAGE_CONFIG=/Users/lizhuoyuan/Development/Project/flutter_screenutil/example/.dart_tool/package_config.json"
1 # Uncomment this line to define a global platform for your project 1 # Uncomment this line to define a global platform for your project
2 -# platform :ios, '9.0' 2 +# platform :ios, '11.0'
3 3
4 # CocoaPods analytics sends network stats synchronously affecting flutter build latency. 4 # CocoaPods analytics sends network stats synchronously affecting flutter build latency.
5 ENV['COCOAPODS_DISABLE_STATS'] = 'true' 5 ENV['COCOAPODS_DISABLE_STATS'] = 'true'
@@ -3,12 +3,13 @@ @@ -3,12 +3,13 @@
3 archiveVersion = 1; 3 archiveVersion = 1;
4 classes = { 4 classes = {
5 }; 5 };
6 - objectVersion = 50; 6 + objectVersion = 54;
7 objects = { 7 objects = {
8 8
9 /* Begin PBXBuildFile section */ 9 /* Begin PBXBuildFile section */
10 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; 10 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
11 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; 11 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
  12 + 63D36646EF18F5733C2062A8 /* libPods-Runner.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 130F09E9DAD00B3B0971DDC6 /* libPods-Runner.a */; };
12 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 9740EEB21CF90195004384FC /* Debug.xcconfig */; }; 13 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 9740EEB21CF90195004384FC /* Debug.xcconfig */; };
13 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */; }; 14 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */; };
14 97C146F31CF9000F007C117D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 97C146F21CF9000F007C117D /* main.m */; }; 15 97C146F31CF9000F007C117D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 97C146F21CF9000F007C117D /* main.m */; };
@@ -31,8 +32,10 @@ @@ -31,8 +32,10 @@
31 /* End PBXCopyFilesBuildPhase section */ 32 /* End PBXCopyFilesBuildPhase section */
32 33
33 /* Begin PBXFileReference section */ 34 /* Begin PBXFileReference section */
  35 + 130F09E9DAD00B3B0971DDC6 /* libPods-Runner.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Runner.a"; sourceTree = BUILT_PRODUCTS_DIR; };
34 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; }; 36 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
35 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; }; 37 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
  38 + 2FEDB5A84760FD9DD85A95E0 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; };
36 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; }; 39 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
37 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; }; 40 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
38 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; }; 41 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
@@ -45,6 +48,7 @@ @@ -45,6 +48,7 @@
45 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; }; 48 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
46 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; }; 49 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
47 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; 50 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  51 + ECA246725599B4830D9267E0 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
48 /* End PBXFileReference section */ 52 /* End PBXFileReference section */
49 53
50 /* Begin PBXFrameworksBuildPhase section */ 54 /* Begin PBXFrameworksBuildPhase section */
@@ -52,12 +56,21 @@ @@ -52,12 +56,21 @@
52 isa = PBXFrameworksBuildPhase; 56 isa = PBXFrameworksBuildPhase;
53 buildActionMask = 2147483647; 57 buildActionMask = 2147483647;
54 files = ( 58 files = (
  59 + 63D36646EF18F5733C2062A8 /* libPods-Runner.a in Frameworks */,
55 ); 60 );
56 runOnlyForDeploymentPostprocessing = 0; 61 runOnlyForDeploymentPostprocessing = 0;
57 }; 62 };
58 /* End PBXFrameworksBuildPhase section */ 63 /* End PBXFrameworksBuildPhase section */
59 64
60 /* Begin PBXGroup section */ 65 /* Begin PBXGroup section */
  66 + 7C130A5AD915A164BB278335 /* Frameworks */ = {
  67 + isa = PBXGroup;
  68 + children = (
  69 + 130F09E9DAD00B3B0971DDC6 /* libPods-Runner.a */,
  70 + );
  71 + name = Frameworks;
  72 + sourceTree = "<group>";
  73 + };
61 9740EEB11CF90186004384FC /* Flutter */ = { 74 9740EEB11CF90186004384FC /* Flutter */ = {
62 isa = PBXGroup; 75 isa = PBXGroup;
63 children = ( 76 children = (
@@ -75,6 +88,8 @@ @@ -75,6 +88,8 @@
75 9740EEB11CF90186004384FC /* Flutter */, 88 9740EEB11CF90186004384FC /* Flutter */,
76 97C146F01CF9000F007C117D /* Runner */, 89 97C146F01CF9000F007C117D /* Runner */,
77 97C146EF1CF9000F007C117D /* Products */, 90 97C146EF1CF9000F007C117D /* Products */,
  91 + C724480D8D6AC326133CFD38 /* Pods */,
  92 + 7C130A5AD915A164BB278335 /* Frameworks */,
78 ); 93 );
79 sourceTree = "<group>"; 94 sourceTree = "<group>";
80 }; 95 };
@@ -110,6 +125,16 @@ @@ -110,6 +125,16 @@
110 name = "Supporting Files"; 125 name = "Supporting Files";
111 sourceTree = "<group>"; 126 sourceTree = "<group>";
112 }; 127 };
  128 + C724480D8D6AC326133CFD38 /* Pods */ = {
  129 + isa = PBXGroup;
  130 + children = (
  131 + ECA246725599B4830D9267E0 /* Pods-Runner.debug.xcconfig */,
  132 + 2FEDB5A84760FD9DD85A95E0 /* Pods-Runner.release.xcconfig */,
  133 + );
  134 + name = Pods;
  135 + path = Pods;
  136 + sourceTree = "<group>";
  137 + };
113 /* End PBXGroup section */ 138 /* End PBXGroup section */
114 139
115 /* Begin PBXNativeTarget section */ 140 /* Begin PBXNativeTarget section */
@@ -117,6 +142,7 @@ @@ -117,6 +142,7 @@
117 isa = PBXNativeTarget; 142 isa = PBXNativeTarget;
118 buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 143 buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
119 buildPhases = ( 144 buildPhases = (
  145 + CA728F37A40563A7A630B700 /* [CP] Check Pods Manifest.lock */,
120 9740EEB61CF901F6004384FC /* Run Script */, 146 9740EEB61CF901F6004384FC /* Run Script */,
121 97C146EA1CF9000F007C117D /* Sources */, 147 97C146EA1CF9000F007C117D /* Sources */,
122 97C146EB1CF9000F007C117D /* Frameworks */, 148 97C146EB1CF9000F007C117D /* Frameworks */,
@@ -186,10 +212,12 @@ @@ -186,10 +212,12 @@
186 /* Begin PBXShellScriptBuildPhase section */ 212 /* Begin PBXShellScriptBuildPhase section */
187 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 213 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
188 isa = PBXShellScriptBuildPhase; 214 isa = PBXShellScriptBuildPhase;
  215 + alwaysOutOfDate = 1;
189 buildActionMask = 2147483647; 216 buildActionMask = 2147483647;
190 files = ( 217 files = (
191 ); 218 );
192 inputPaths = ( 219 inputPaths = (
  220 + "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
193 ); 221 );
194 name = "Thin Binary"; 222 name = "Thin Binary";
195 outputPaths = ( 223 outputPaths = (
@@ -200,6 +228,7 @@ @@ -200,6 +228,7 @@
200 }; 228 };
201 9740EEB61CF901F6004384FC /* Run Script */ = { 229 9740EEB61CF901F6004384FC /* Run Script */ = {
202 isa = PBXShellScriptBuildPhase; 230 isa = PBXShellScriptBuildPhase;
  231 + alwaysOutOfDate = 1;
203 buildActionMask = 2147483647; 232 buildActionMask = 2147483647;
204 files = ( 233 files = (
205 ); 234 );
@@ -212,6 +241,28 @@ @@ -212,6 +241,28 @@
212 shellPath = /bin/sh; 241 shellPath = /bin/sh;
213 shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 242 shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
214 }; 243 };
  244 + CA728F37A40563A7A630B700 /* [CP] Check Pods Manifest.lock */ = {
  245 + isa = PBXShellScriptBuildPhase;
  246 + buildActionMask = 2147483647;
  247 + files = (
  248 + );
  249 + inputFileListPaths = (
  250 + );
  251 + inputPaths = (
  252 + "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  253 + "${PODS_ROOT}/Manifest.lock",
  254 + );
  255 + name = "[CP] Check Pods Manifest.lock";
  256 + outputFileListPaths = (
  257 + );
  258 + outputPaths = (
  259 + "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
  260 + );
  261 + runOnlyForDeploymentPostprocessing = 0;
  262 + shellPath = /bin/sh;
  263 + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  264 + showEnvVarsInLog = 0;
  265 + };
215 /* End PBXShellScriptBuildPhase section */ 266 /* End PBXShellScriptBuildPhase section */
216 267
217 /* Begin PBXSourcesBuildPhase section */ 268 /* Begin PBXSourcesBuildPhase section */
@@ -292,7 +343,7 @@ @@ -292,7 +343,7 @@
292 GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 343 GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
293 GCC_WARN_UNUSED_FUNCTION = YES; 344 GCC_WARN_UNUSED_FUNCTION = YES;
294 GCC_WARN_UNUSED_VARIABLE = YES; 345 GCC_WARN_UNUSED_VARIABLE = YES;
295 - IPHONEOS_DEPLOYMENT_TARGET = 9.0; 346 + IPHONEOS_DEPLOYMENT_TARGET = 11.0;
296 MTL_ENABLE_DEBUG_INFO = YES; 347 MTL_ENABLE_DEBUG_INFO = YES;
297 ONLY_ACTIVE_ARCH = YES; 348 ONLY_ACTIVE_ARCH = YES;
298 SDKROOT = iphoneos; 349 SDKROOT = iphoneos;
@@ -339,7 +390,7 @@ @@ -339,7 +390,7 @@
339 GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 390 GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
340 GCC_WARN_UNUSED_FUNCTION = YES; 391 GCC_WARN_UNUSED_FUNCTION = YES;
341 GCC_WARN_UNUSED_VARIABLE = YES; 392 GCC_WARN_UNUSED_VARIABLE = YES;
342 - IPHONEOS_DEPLOYMENT_TARGET = 9.0; 393 + IPHONEOS_DEPLOYMENT_TARGET = 11.0;
343 MTL_ENABLE_DEBUG_INFO = NO; 394 MTL_ENABLE_DEBUG_INFO = NO;
344 SDKROOT = iphoneos; 395 SDKROOT = iphoneos;
345 TARGETED_DEVICE_FAMILY = "1,2"; 396 TARGETED_DEVICE_FAMILY = "1,2";
@@ -362,7 +413,10 @@ @@ -362,7 +413,10 @@
362 "$(PROJECT_DIR)/Flutter", 413 "$(PROJECT_DIR)/Flutter",
363 ); 414 );
364 INFOPLIST_FILE = Runner/Info.plist; 415 INFOPLIST_FILE = Runner/Info.plist;
365 - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 416 + LD_RUNPATH_SEARCH_PATHS = (
  417 + "$(inherited)",
  418 + "@executable_path/Frameworks",
  419 + );
366 LIBRARY_SEARCH_PATHS = ( 420 LIBRARY_SEARCH_PATHS = (
367 "$(inherited)", 421 "$(inherited)",
368 "$(PROJECT_DIR)/Flutter", 422 "$(PROJECT_DIR)/Flutter",
@@ -387,7 +441,10 @@ @@ -387,7 +441,10 @@
387 "$(PROJECT_DIR)/Flutter", 441 "$(PROJECT_DIR)/Flutter",
388 ); 442 );
389 INFOPLIST_FILE = Runner/Info.plist; 443 INFOPLIST_FILE = Runner/Info.plist;
390 - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 444 + LD_RUNPATH_SEARCH_PATHS = (
  445 + "$(inherited)",
  446 + "@executable_path/Frameworks",
  447 + );
391 LIBRARY_SEARCH_PATHS = ( 448 LIBRARY_SEARCH_PATHS = (
392 "$(inherited)", 449 "$(inherited)",
393 "$(PROJECT_DIR)/Flutter", 450 "$(PROJECT_DIR)/Flutter",
@@ -4,4 +4,7 @@ @@ -4,4 +4,7 @@
4 <FileRef 4 <FileRef
5 location = "group:Runner.xcodeproj"> 5 location = "group:Runner.xcodeproj">
6 </FileRef> 6 </FileRef>
  7 + <FileRef
  8 + location = "group:Pods/Pods.xcodeproj">
  9 + </FileRef>
7 </Workspace> 10 </Workspace>
@@ -41,5 +41,9 @@ @@ -41,5 +41,9 @@
41 </array> 41 </array>
42 <key>UIViewControllerBasedStatusBarAppearance</key> 42 <key>UIViewControllerBasedStatusBarAppearance</key>
43 <false/> 43 <false/>
  44 + <key>CADisableMinimumFrameDurationOnPhone</key>
  45 + <true/>
  46 + <key>UIApplicationSupportsIndirectInputEvents</key>
  47 + <true/>
44 </dict> 48 </dict>
45 </plist> 49 </plist>
@@ -129,7 +129,6 @@ class HomePageScaffold extends StatelessWidget { @@ -129,7 +129,6 @@ class HomePageScaffold extends StatelessWidget {
129 showModalBottomSheet<void>( 129 showModalBottomSheet<void>(
130 context: context, 130 context: context,
131 builder: (BuildContext context) { 131 builder: (BuildContext context) {
132 - print('BottomSheet build');  
133 return Container( 132 return Container(
134 height: 200.w + 133 height: 200.w +
135 MediaQuery.of(context).viewInsets.bottom, 134 MediaQuery.of(context).viewInsets.bottom,
1 name: flutter_screenutil 1 name: flutter_screenutil
2 description: A flutter plugin for adapting screen and font size.Guaranteed to look good on different models 2 description: A flutter plugin for adapting screen and font size.Guaranteed to look good on different models
3 -version: 5.8.3 3 +version: 5.8.4
4 homepage: https://github.com/OpenFlutter/flutter_screenutil 4 homepage: https://github.com/OpenFlutter/flutter_screenutil
5 5
6 environment: 6 environment: