Commit cd95423 1 parent 3225363 commit cd95423 Copy full SHA for cd95423
File tree 2 files changed +20
-20
lines changed
2 files changed +20
-20
lines changed Original file line number Diff line number Diff line change 1024
1024
CODE_SIGN_IDENTITY = "Apple Development";
1025
1025
CODE_SIGN_STYLE = Automatic;
1026
1026
COMBINE_HIDPI_IMAGES = YES;
1027
- CURRENT_PROJECT_VERSION = 26 ;
1027
+ CURRENT_PROJECT_VERSION = 27 ;
1028
1028
DEVELOPMENT_ASSET_PATHS = "TidalSwift/Preview\\ Content";
1029
1029
DEVELOPMENT_TEAM = V7E5P7292M;
1030
1030
ENABLE_HARDENED_RUNTIME = YES;
1054
1054
CODE_SIGN_IDENTITY = "Apple Development";
1055
1055
CODE_SIGN_STYLE = Automatic;
1056
1056
COMBINE_HIDPI_IMAGES = YES;
1057
- CURRENT_PROJECT_VERSION = 26 ;
1057
+ CURRENT_PROJECT_VERSION = 27 ;
1058
1058
DEVELOPMENT_ASSET_PATHS = "TidalSwift/Preview\\ Content";
1059
1059
DEVELOPMENT_TEAM = V7E5P7292M;
1060
1060
ENABLE_HARDENED_RUNTIME = YES;
Original file line number Diff line number Diff line change @@ -58,6 +58,24 @@ struct ArtistView: View {
58
58
}
59
59
}
60
60
61
+ var body : some View {
62
+ ZStack {
63
+ // TODO: Bring ScroolView back in?
64
+ if let artist = artist {
65
+ VStack ( alignment: . leading) {
66
+ headerSection ( artist, viewState: viewState)
67
+ topTrackSection ( )
68
+ Divider ( )
69
+ bottomSection ( artist)
70
+ }
71
+ . padding ( . top, 50 ) // Has to be 50 instead of 40 like the others to look the same
72
+ } else {
73
+ Text ( " Couldn't load Artist " )
74
+ }
75
+ BackButton ( )
76
+ }
77
+ }
78
+
61
79
func headerSection( _ artist: Artist , viewState: ViewState ) -> some View {
62
80
HStack {
63
81
if let pictureUrlSmall = artist. getPictureUrl ( session: session, resolution: 320 ) ,
@@ -169,22 +187,4 @@ struct ArtistView: View {
169
187
}
170
188
. padding ( . horizontal)
171
189
}
172
-
173
- var body : some View {
174
- ZStack {
175
- // TODO: Bring ScroolView back in?
176
- if let artist = artist {
177
- VStack ( alignment: . leading) {
178
- headerSection ( artist, viewState: viewState)
179
- topTrackSection ( )
180
- Divider ( )
181
- bottomSection ( artist)
182
- }
183
- . padding ( . top, 50 ) // Has to be 50 instead of 40 like the others to look the same
184
- } else {
185
- Text ( " Couldn't load Artist " )
186
- }
187
- BackButton ( )
188
- }
189
- }
190
190
}
You can’t perform that action at this time.
0 commit comments