File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ## 1.1.1
2+
3+ * Lower dart constraint to 3.0.0
4+ * Lower flutter constraint to 3.16.0
5+
16## 1.1.0
27
38* * BREAKING* : Changed handling of scrolling for further customization.
3035
3136## 0.1.0
3237
33- * Initial release.
38+ * Initial release.
Original file line number Diff line number Diff line change 2020 <string >???? </string >
2121 <key >CFBundleVersion </key >
2222 <string >1.0 </string >
23- <key >MinimumOSVersion </key >
24- <string >13.0 </string >
2523</dict >
2624</plist >
Original file line number Diff line number Diff line change 11PODS:
22 - Flutter (1.0.0)
3- - path_provider_foundation (0.0.1):
4- - Flutter
5- - FlutterMacOS
63
74DEPENDENCIES:
85 - Flutter (from `Flutter`)
9- - path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/darwin`)
106
117EXTERNAL SOURCES:
128 Flutter:
139 :path: Flutter
14- path_provider_foundation:
15- :path: ".symlinks/plugins/path_provider_foundation/darwin"
1610
1711SPEC CHECKSUMS:
1812 Flutter: cabc95a1d2626b1b06e7179b784ebcf0c0cde467
19- path_provider_foundation: 080d55be775b7414fd5a5ef3ac137b97b097e564
2013
2114PODFILE CHECKSUM: 0dbd5a87e0ace00c9610d2037ac22083a01f861d
2215
Original file line number Diff line number Diff line change 139139 97C146EC1CF9000F007C117D /* Resources */,
140140 9705A1C41CF9048500538489 /* Embed Frameworks */,
141141 3B06AD1E1E4923F5004D2608 /* Thin Binary */,
142- A91E8B459A2E08DB92A0AABF /* [CP] Embed Pods Frameworks */,
143142 );
144143 buildRules = (
145144 );
229228 shellPath = /bin/sh;
230229 shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
231230 };
232- A91E8B459A2E08DB92A0AABF /* [CP] Embed Pods Frameworks */ = {
233- isa = PBXShellScriptBuildPhase;
234- buildActionMask = 2147483647;
235- files = (
236- );
237- inputFileListPaths = (
238- "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
239- );
240- name = "[CP] Embed Pods Frameworks";
241- outputFileListPaths = (
242- "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
243- );
244- runOnlyForDeploymentPostprocessing = 0;
245- shellPath = /bin/sh;
246- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
247- showEnvVarsInLog = 0;
248- };
249231 BF217A2F67F70C6017711480 /* [CP] Check Pods Manifest.lock */ = {
250232 isa = PBXShellScriptBuildPhase;
251233 buildActionMask = 2147483647;
Original file line number Diff line number Diff line change 1- import UIKit
21import Flutter
2+ import UIKit
33
44@main
5- @objc class AppDelegate : FlutterAppDelegate {
5+ @objc class AppDelegate : FlutterAppDelegate , FlutterImplicitEngineDelegate {
66 override func application(
77 _ application: UIApplication ,
88 didFinishLaunchingWithOptions launchOptions: [ UIApplication . LaunchOptionsKey : Any ] ?
99 ) -> Bool {
10- GeneratedPluginRegistrant . register ( with: self )
1110 return super. application ( application, didFinishLaunchingWithOptions: launchOptions)
1211 }
12+
13+ func didInitializeImplicitFlutterEngine( _ engineBridge: FlutterImplicitEngineBridge ) {
14+ GeneratedPluginRegistrant . register ( with: engineBridge. pluginRegistry)
15+ }
1316}
Original file line number Diff line number Diff line change 22<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33<plist version =" 1.0" >
44<dict >
5+ <key >CADisableMinimumFrameDurationOnPhone </key >
6+ <true />
57 <key >CFBundleDevelopmentRegion </key >
68 <string >$(DEVELOPMENT_LANGUAGE) </string >
79 <key >CFBundleDisplayName </key >
2426 <string >$(FLUTTER_BUILD_NUMBER) </string >
2527 <key >LSRequiresIPhoneOS </key >
2628 <true />
29+ <key >UIApplicationSceneManifest </key >
30+ <dict >
31+ <key >UIApplicationSupportsMultipleScenes </key >
32+ <false />
33+ <key >UISceneConfigurations </key >
34+ <dict >
35+ <key >UIWindowSceneSessionRoleApplication </key >
36+ <array >
37+ <dict >
38+ <key >UISceneClassName </key >
39+ <string >UIWindowScene </string >
40+ <key >UISceneConfigurationName </key >
41+ <string >flutter </string >
42+ <key >UISceneDelegateClassName </key >
43+ <string >FlutterSceneDelegate </string >
44+ <key >UISceneStoryboardFile </key >
45+ <string >Main </string >
46+ </dict >
47+ </array >
48+ </dict >
49+ </dict >
50+ <key >UIApplicationSupportsIndirectInputEvents </key >
51+ <true />
2752 <key >UILaunchStoryboardName </key >
2853 <string >LaunchScreen </string >
2954 <key >UIMainStoryboardFile </key >
4368 </array >
4469 <key >UIViewControllerBasedStatusBarAppearance </key >
4570 <false />
46- <key >CADisableMinimumFrameDurationOnPhone </key >
47- <true />
48- <key >UIApplicationSupportsIndirectInputEvents </key >
49- <true />
5071</dict >
5172</plist >
Original file line number Diff line number Diff line change 55import FlutterMacOS
66import Foundation
77
8- import path_provider_foundation
98
109func RegisterGeneratedPlugins( registry: FlutterPluginRegistry ) {
11- PathProviderPlugin . register ( with: registry. registrar ( forPlugin: " PathProviderPlugin " ) )
1210}
Original file line number Diff line number Diff line change 11PODS:
22 - FlutterMacOS (1.0.0)
3- - path_provider_foundation (0.0.1):
4- - Flutter
5- - FlutterMacOS
63
74DEPENDENCIES:
85 - FlutterMacOS (from `Flutter/ephemeral`)
9- - path_provider_foundation (from `Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin`)
106
117EXTERNAL SOURCES:
128 FlutterMacOS:
139 :path: Flutter/ephemeral
14- path_provider_foundation:
15- :path: Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin
1610
1711SPEC CHECKSUMS:
1812 FlutterMacOS: d0db08ddef1a9af05a5ec4b724367152bb0500b1
19- path_provider_foundation: 080d55be775b7414fd5a5ef3ac137b97b097e564
2013
2114PODFILE CHECKSUM: 0d3963a09fc94f580682bd88480486da345dc3f0
2215
Original file line number Diff line number Diff line change 184184 33CC10EB2044A3C60003C045 /* Resources */,
185185 33CC110E2044A8840003C045 /* Bundle Framework */,
186186 3399D490228B24CF009A79C7 /* ShellScript */,
187- E5C5328C6C4C7E425C80827B /* [CP] Embed Pods Frameworks */,
188187 );
189188 buildRules = (
190189 );
314313 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";
315314 showEnvVarsInLog = 0;
316315 };
317- E5C5328C6C4C7E425C80827B /* [CP] Embed Pods Frameworks */ = {
318- isa = PBXShellScriptBuildPhase;
319- buildActionMask = 2147483647;
320- files = (
321- );
322- inputFileListPaths = (
323- "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
324- );
325- name = "[CP] Embed Pods Frameworks";
326- outputFileListPaths = (
327- "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
328- );
329- runOnlyForDeploymentPostprocessing = 0;
330- shellPath = /bin/sh;
331- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
332- showEnvVarsInLog = 0;
333- };
334316/* End PBXShellScriptBuildPhase section */
335317
336318/* Begin PBXSourcesBuildPhase section */
Original file line number Diff line number Diff line change @@ -101,10 +101,10 @@ packages:
101101 dependency: "direct dev"
102102 description:
103103 name: cosee_lints
104- sha256: c3f8217508009efc935ea91803ec4219fc65a772997dd25278502b774d329674
104+ sha256: "4369ad0964e217729530356f4323ca936ed08b89180d29fd59391cd91bbafe7d"
105105 url: "https://pub.dev"
106106 source: hosted
107- version: "0.12 .0"
107+ version: "0.13 .0"
108108 crypto:
109109 dependency: transitive
110110 description:
@@ -257,7 +257,7 @@ packages:
257257 path: ".."
258258 relative: true
259259 source: path
260- version: "1.1.0 "
260+ version: "1.1.1 "
261261 intl:
262262 dependency: transitive
263263 description:
@@ -640,5 +640,5 @@ packages:
640640 source: hosted
641641 version: "3.1.3"
642642sdks:
643- dart: ">=3.10.3 <4.0.0"
643+ dart: ">=3.11.0 <4.0.0"
644644 flutter: ">=3.38.4"
You can’t perform that action at this time.
0 commit comments