Skip to content

Commit c3774ed

Browse files
refactor
1 parent c10250a commit c3774ed

25 files changed

+870
-38
lines changed

ios/Flutter/Debug.xcconfig

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
12
#include "Generated.xcconfig"

ios/Flutter/Release.xcconfig

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
12
#include "Generated.xcconfig"

ios/Podfile

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Uncomment this line to define a global platform for your project
2+
# platform :ios, '11.0'
3+
4+
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
5+
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
6+
7+
project 'Runner', {
8+
'Debug' => :debug,
9+
'Profile' => :release,
10+
'Release' => :release,
11+
}
12+
13+
def flutter_root
14+
generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
15+
unless File.exist?(generated_xcode_build_settings_path)
16+
raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
17+
end
18+
19+
File.foreach(generated_xcode_build_settings_path) do |line|
20+
matches = line.match(/FLUTTER_ROOT\=(.*)/)
21+
return matches[1].strip if matches
22+
end
23+
raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
24+
end
25+
26+
require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)
27+
28+
flutter_ios_podfile_setup
29+
30+
target 'Runner' do
31+
use_frameworks!
32+
use_modular_headers!
33+
34+
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
35+
target 'RunnerTests' do
36+
inherit! :search_paths
37+
end
38+
end
39+
40+
post_install do |installer|
41+
installer.pods_project.targets.each do |target|
42+
flutter_additional_ios_build_settings(target)
43+
end
44+
end

ios/Podfile.lock

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
PODS:
2+
- Flutter (1.0.0)
3+
- FMDB (2.7.5):
4+
- FMDB/standard (= 2.7.5)
5+
- FMDB/standard (2.7.5)
6+
- path_provider_foundation (0.0.1):
7+
- Flutter
8+
- FlutterMacOS
9+
- sqflite (0.0.3):
10+
- Flutter
11+
- FMDB (>= 2.7.5)
12+
13+
DEPENDENCIES:
14+
- Flutter (from `Flutter`)
15+
- path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/darwin`)
16+
- sqflite (from `.symlinks/plugins/sqflite/ios`)
17+
18+
SPEC REPOS:
19+
trunk:
20+
- FMDB
21+
22+
EXTERNAL SOURCES:
23+
Flutter:
24+
:path: Flutter
25+
path_provider_foundation:
26+
:path: ".symlinks/plugins/path_provider_foundation/darwin"
27+
sqflite:
28+
:path: ".symlinks/plugins/sqflite/ios"
29+
30+
SPEC CHECKSUMS:
31+
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
32+
FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a
33+
path_provider_foundation: 29f094ae23ebbca9d3d0cec13889cd9060c0e943
34+
sqflite: 31f7eba61e3074736dff8807a9b41581e4f7f15a
35+
36+
PODFILE CHECKSUM: 70d9d25280d0dd177a5f637cdb0f0b0b12c6a189
37+
38+
COCOAPODS: 1.11.3

ios/Runner.xcodeproj/project.pbxproj

+123-15
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@
88

99
/* Begin PBXBuildFile section */
1010
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
11+
2867F0435E2BF6DE30FBEC3A /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 14E34177B5F7369FF222FB15 /* Pods_Runner.framework */; };
12+
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
1113
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
14+
5B3BB2333B74403AAB762BBC /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2FA8F1D15B46FDAE728519E3 /* Pods_RunnerTests.framework */; };
1215
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
1316
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
1417
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
1518
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
16-
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
1719
/* End PBXBuildFile section */
1820

1921
/* Begin PBXContainerItemProxy section */
@@ -40,34 +42,73 @@
4042
/* End PBXCopyFilesBuildPhase section */
4143

4244
/* Begin PBXFileReference section */
45+
0CD99956D746957EBED31248 /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = "<group>"; };
4346
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
4447
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
48+
14E34177B5F7369FF222FB15 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
49+
2FA8F1D15B46FDAE728519E3 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
50+
331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
51+
331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
4552
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
53+
4793B044CB6EECC5684F7711 /* 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>"; };
4654
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
4755
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
56+
766EAE242E481468ED560CB1 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<group>"; };
4857
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
58+
8724DE5B853F819A8293B1DA /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = "<group>"; };
59+
96E1ECA3BB9B4FC34ED376D1 /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = "<group>"; };
4960
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
5061
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
5162
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
5263
97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
5364
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
5465
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
5566
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
56-
331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
57-
331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
67+
BA5B5D4BB073C12219DE6220 /* 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>"; };
5868
/* End PBXFileReference section */
5969

6070
/* Begin PBXFrameworksBuildPhase section */
6171
97C146EB1CF9000F007C117D /* Frameworks */ = {
6272
isa = PBXFrameworksBuildPhase;
6373
buildActionMask = 2147483647;
6474
files = (
75+
2867F0435E2BF6DE30FBEC3A /* Pods_Runner.framework in Frameworks */,
76+
);
77+
runOnlyForDeploymentPostprocessing = 0;
78+
};
79+
B7FB8F5B1C00BD2A494C19B4 /* Frameworks */ = {
80+
isa = PBXFrameworksBuildPhase;
81+
buildActionMask = 2147483647;
82+
files = (
83+
5B3BB2333B74403AAB762BBC /* Pods_RunnerTests.framework in Frameworks */,
6584
);
6685
runOnlyForDeploymentPostprocessing = 0;
6786
};
6887
/* End PBXFrameworksBuildPhase section */
6988

7089
/* Begin PBXGroup section */
90+
331C8082294A63A400263BE5 /* RunnerTests */ = {
91+
isa = PBXGroup;
92+
children = (
93+
331C807B294A618700263BE5 /* RunnerTests.swift */,
94+
);
95+
path = RunnerTests;
96+
sourceTree = "<group>";
97+
};
98+
7E92172D190AF568E2A392F7 /* Pods */ = {
99+
isa = PBXGroup;
100+
children = (
101+
4793B044CB6EECC5684F7711 /* Pods-Runner.debug.xcconfig */,
102+
BA5B5D4BB073C12219DE6220 /* Pods-Runner.release.xcconfig */,
103+
766EAE242E481468ED560CB1 /* Pods-Runner.profile.xcconfig */,
104+
8724DE5B853F819A8293B1DA /* Pods-RunnerTests.debug.xcconfig */,
105+
0CD99956D746957EBED31248 /* Pods-RunnerTests.release.xcconfig */,
106+
96E1ECA3BB9B4FC34ED376D1 /* Pods-RunnerTests.profile.xcconfig */,
107+
);
108+
name = Pods;
109+
path = Pods;
110+
sourceTree = "<group>";
111+
};
71112
9740EEB11CF90186004384FC /* Flutter */ = {
72113
isa = PBXGroup;
73114
children = (
@@ -79,21 +120,15 @@
79120
name = Flutter;
80121
sourceTree = "<group>";
81122
};
82-
331C8082294A63A400263BE5 /* RunnerTests */ = {
83-
isa = PBXGroup;
84-
children = (
85-
331C807B294A618700263BE5 /* RunnerTests.swift */,
86-
);
87-
path = RunnerTests;
88-
sourceTree = "<group>";
89-
};
90123
97C146E51CF9000F007C117D = {
91124
isa = PBXGroup;
92125
children = (
93126
9740EEB11CF90186004384FC /* Flutter */,
94127
97C146F01CF9000F007C117D /* Runner */,
95128
97C146EF1CF9000F007C117D /* Products */,
96129
331C8082294A63A400263BE5 /* RunnerTests */,
130+
7E92172D190AF568E2A392F7 /* Pods */,
131+
C9F628A64438D3C09E89281D /* Frameworks */,
97132
);
98133
sourceTree = "<group>";
99134
};
@@ -121,16 +156,26 @@
121156
path = Runner;
122157
sourceTree = "<group>";
123158
};
159+
C9F628A64438D3C09E89281D /* Frameworks */ = {
160+
isa = PBXGroup;
161+
children = (
162+
14E34177B5F7369FF222FB15 /* Pods_Runner.framework */,
163+
2FA8F1D15B46FDAE728519E3 /* Pods_RunnerTests.framework */,
164+
);
165+
name = Frameworks;
166+
sourceTree = "<group>";
167+
};
124168
/* End PBXGroup section */
125169

126170
/* Begin PBXNativeTarget section */
127171
331C8080294A63A400263BE5 /* RunnerTests */ = {
128172
isa = PBXNativeTarget;
129173
buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
130174
buildPhases = (
175+
B02A2D90E80A2AEB5BC7211F /* [CP] Check Pods Manifest.lock */,
131176
331C807D294A63A400263BE5 /* Sources */,
132-
331C807E294A63A400263BE5 /* Frameworks */,
133177
331C807F294A63A400263BE5 /* Resources */,
178+
B7FB8F5B1C00BD2A494C19B4 /* Frameworks */,
134179
);
135180
buildRules = (
136181
);
@@ -146,12 +191,14 @@
146191
isa = PBXNativeTarget;
147192
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
148193
buildPhases = (
194+
BF950872264211705D5550F2 /* [CP] Check Pods Manifest.lock */,
149195
9740EEB61CF901F6004384FC /* Run Script */,
150196
97C146EA1CF9000F007C117D /* Sources */,
151197
97C146EB1CF9000F007C117D /* Frameworks */,
152198
97C146EC1CF9000F007C117D /* Resources */,
153199
9705A1C41CF9048500538489 /* Embed Frameworks */,
154200
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
201+
645ED8A6C7636747DFE2A16F /* [CP] Embed Pods Frameworks */,
155202
);
156203
buildRules = (
157204
);
@@ -238,6 +285,23 @@
238285
shellPath = /bin/sh;
239286
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
240287
};
288+
645ED8A6C7636747DFE2A16F /* [CP] Embed Pods Frameworks */ = {
289+
isa = PBXShellScriptBuildPhase;
290+
buildActionMask = 2147483647;
291+
files = (
292+
);
293+
inputFileListPaths = (
294+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
295+
);
296+
name = "[CP] Embed Pods Frameworks";
297+
outputFileListPaths = (
298+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
299+
);
300+
runOnlyForDeploymentPostprocessing = 0;
301+
shellPath = /bin/sh;
302+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
303+
showEnvVarsInLog = 0;
304+
};
241305
9740EEB61CF901F6004384FC /* Run Script */ = {
242306
isa = PBXShellScriptBuildPhase;
243307
alwaysOutOfDate = 1;
@@ -253,6 +317,50 @@
253317
shellPath = /bin/sh;
254318
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
255319
};
320+
B02A2D90E80A2AEB5BC7211F /* [CP] Check Pods Manifest.lock */ = {
321+
isa = PBXShellScriptBuildPhase;
322+
buildActionMask = 2147483647;
323+
files = (
324+
);
325+
inputFileListPaths = (
326+
);
327+
inputPaths = (
328+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
329+
"${PODS_ROOT}/Manifest.lock",
330+
);
331+
name = "[CP] Check Pods Manifest.lock";
332+
outputFileListPaths = (
333+
);
334+
outputPaths = (
335+
"$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt",
336+
);
337+
runOnlyForDeploymentPostprocessing = 0;
338+
shellPath = /bin/sh;
339+
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";
340+
showEnvVarsInLog = 0;
341+
};
342+
BF950872264211705D5550F2 /* [CP] Check Pods Manifest.lock */ = {
343+
isa = PBXShellScriptBuildPhase;
344+
buildActionMask = 2147483647;
345+
files = (
346+
);
347+
inputFileListPaths = (
348+
);
349+
inputPaths = (
350+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
351+
"${PODS_ROOT}/Manifest.lock",
352+
);
353+
name = "[CP] Check Pods Manifest.lock";
354+
outputFileListPaths = (
355+
);
356+
outputPaths = (
357+
"$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
358+
);
359+
runOnlyForDeploymentPostprocessing = 0;
360+
shellPath = /bin/sh;
361+
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";
362+
showEnvVarsInLog = 0;
363+
};
256364
/* End PBXShellScriptBuildPhase section */
257365

258366
/* Begin PBXSourcesBuildPhase section */
@@ -377,7 +485,7 @@
377485
};
378486
331C8088294A63A400263BE5 /* Debug */ = {
379487
isa = XCBuildConfiguration;
380-
baseConfigurationReference = AE0B7B92F70575B8D7E0D07E /* Pods-RunnerTests.debug.xcconfig */;
488+
baseConfigurationReference = 8724DE5B853F819A8293B1DA /* Pods-RunnerTests.debug.xcconfig */;
381489
buildSettings = {
382490
BUNDLE_LOADER = "$(TEST_HOST)";
383491
CODE_SIGN_STYLE = Automatic;
@@ -395,7 +503,7 @@
395503
};
396504
331C8089294A63A400263BE5 /* Release */ = {
397505
isa = XCBuildConfiguration;
398-
baseConfigurationReference = 89B67EB44CE7B6631473024E /* Pods-RunnerTests.release.xcconfig */;
506+
baseConfigurationReference = 0CD99956D746957EBED31248 /* Pods-RunnerTests.release.xcconfig */;
399507
buildSettings = {
400508
BUNDLE_LOADER = "$(TEST_HOST)";
401509
CODE_SIGN_STYLE = Automatic;
@@ -411,7 +519,7 @@
411519
};
412520
331C808A294A63A400263BE5 /* Profile */ = {
413521
isa = XCBuildConfiguration;
414-
baseConfigurationReference = 640959BDD8F10B91D80A66BE /* Pods-RunnerTests.profile.xcconfig */;
522+
baseConfigurationReference = 96E1ECA3BB9B4FC34ED376D1 /* Pods-RunnerTests.profile.xcconfig */;
415523
buildSettings = {
416524
BUNDLE_LOADER = "$(TEST_HOST)";
417525
CODE_SIGN_STYLE = Automatic;

ios/Runner.xcworkspace/contents.xcworkspacedata

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/components/album_card.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class _AlbumCardState extends State<AlbumCard> {
6565
crossAxisAlignment: CrossAxisAlignment.start,
6666
children: [
6767
Text(
68-
snapshot.data![index].title,
68+
"${index + 1}) ${snapshot.data![index].title}",
6969
style: const TextStyle(
7070
fontSize: 16, fontWeight: FontWeight.w500),
7171
),

0 commit comments

Comments
 (0)