Skip to content

Commit 6623967

Browse files
committed
fix: cross build error
1 parent a81be14 commit 6623967

File tree

8 files changed

+52
-17
lines changed

8 files changed

+52
-17
lines changed

V2exOS.xcodeproj/project.pbxproj

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@
7979
0DEFFCB42A9EDB5100A1585B /* CommentUserTagView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DEFFCB12A9EDB5100A1585B /* CommentUserTagView.swift */; };
8080
0DF3300E28A55DEA00AEF312 /* InboxListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DF3300D28A55DEA00AEF312 /* InboxListView.swift */; };
8181
0DF3301028A56A3600AEF312 /* StringExt.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DF3300F28A56A3600AEF312 /* StringExt.swift */; };
82+
0DFA91232B35BE110081B8AD /* Common.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 0DFA91222B35BE110081B8AD /* Common.xcassets */; };
83+
0DFA91242B35BE110081B8AD /* Common.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 0DFA91222B35BE110081B8AD /* Common.xcassets */; };
84+
0DFA91252B35BE110081B8AD /* Common.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 0DFA91222B35BE110081B8AD /* Common.xcassets */; };
8285
/* End PBXBuildFile section */
8386

8487
/* Begin PBXFileReference section */
@@ -122,6 +125,7 @@
122125
0DEFFCB12A9EDB5100A1585B /* CommentUserTagView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommentUserTagView.swift; sourceTree = "<group>"; };
123126
0DF3300D28A55DEA00AEF312 /* InboxListView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InboxListView.swift; sourceTree = "<group>"; };
124127
0DF3300F28A56A3600AEF312 /* StringExt.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StringExt.swift; sourceTree = "<group>"; };
128+
0DFA91222B35BE110081B8AD /* Common.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Common.xcassets; sourceTree = "<group>"; };
125129
/* End PBXFileReference section */
126130

127131
/* Begin PBXFrameworksBuildPhase section */
@@ -194,6 +198,7 @@
194198
0DA3F3A528A412F100E7224D /* User */,
195199
0D033B25288CD64500129C9B /* V2exOSApp.swift */,
196200
0D033B29288CD64700129C9B /* Assets.xcassets */,
201+
0DFA91222B35BE110081B8AD /* Common.xcassets */,
197202
0D033B2E288CD64700129C9B /* V2exOS.entitlements */,
198203
0D033B2B288CD64700129C9B /* Preview Content */,
199204
);
@@ -469,6 +474,7 @@
469474
files = (
470475
0D033B2D288CD64700129C9B /* Preview Assets.xcassets in Resources */,
471476
0D033B2A288CD64700129C9B /* Assets.xcassets in Resources */,
477+
0DFA91232B35BE110081B8AD /* Common.xcassets in Resources */,
472478
);
473479
runOnlyForDeploymentPostprocessing = 0;
474480
};
@@ -478,6 +484,7 @@
478484
files = (
479485
0D2334D82996944600DF4B73 /* Preview Assets.xcassets in Resources */,
480486
0D2334D52996944600DF4B73 /* Assets.xcassets in Resources */,
487+
0DFA91252B35BE110081B8AD /* Common.xcassets in Resources */,
481488
);
482489
runOnlyForDeploymentPostprocessing = 0;
483490
};
@@ -487,6 +494,7 @@
487494
files = (
488495
0DA7FA6E298799B400374B3A /* Preview Assets.xcassets in Resources */,
489496
0DA7FA6B298799B400374B3A /* Assets.xcassets in Resources */,
497+
0DFA91242B35BE110081B8AD /* Common.xcassets in Resources */,
490498
);
491499
runOnlyForDeploymentPostprocessing = 0;
492500
};

V2exOS/Assets.xcassets/ContentBackgroundColor.colorset/Contents.json

Lines changed: 0 additions & 15 deletions
This file was deleted.
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"colors" : [
3+
{
4+
"color" : {
5+
"color-space" : "srgb",
6+
"components" : {
7+
"alpha" : "1.000",
8+
"blue" : "0.985",
9+
"green" : "0.985",
10+
"red" : "0.985"
11+
}
12+
},
13+
"idiom" : "universal"
14+
},
15+
{
16+
"appearances" : [
17+
{
18+
"appearance" : "luminosity",
19+
"value" : "dark"
20+
}
21+
],
22+
"color" : {
23+
"color-space" : "srgb",
24+
"components" : {
25+
"alpha" : "1.000",
26+
"blue" : "0.127",
27+
"green" : "0.127",
28+
"red" : "0.127"
29+
}
30+
},
31+
"idiom" : "universal"
32+
}
33+
],
34+
"info" : {
35+
"author" : "xcode",
36+
"version" : 1
37+
}
38+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"info" : {
3+
"author" : "xcode",
4+
"version" : 1
5+
}
6+
}

V2exOS/Views/TopicList/TopicListView.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,6 @@ struct TopicListView: View {
8383
.listStyle(.plain)
8484
.frame(minWidth: 400, idealWidth: 500)
8585
.foregroundColor(.black)
86-
// .removeBackground()
87-
// .background(Color("ContentBackgroundColor"))
8886
.onFirstAppear {
8987
print("onFirstAppear....")
9088
Task {

0 commit comments

Comments
 (0)