parent
41f692a402
commit
898ea17a2e
|
@ -17,7 +17,10 @@ struct ContentByChannelView: View {
|
||||||
|
|
||||||
@State private var selectedCreatorId = 0
|
@State private var selectedCreatorId = 0
|
||||||
|
|
||||||
let columns = [GridItem(.flexible()), GridItem(.flexible())]
|
let columns = [
|
||||||
|
GridItem(.flexible(), spacing: 13.3),
|
||||||
|
GridItem(.flexible(), spacing: 13.3)
|
||||||
|
]
|
||||||
|
|
||||||
var body: some View {
|
var body: some View {
|
||||||
VStack(alignment: .leading, spacing: 20) {
|
VStack(alignment: .leading, spacing: 20) {
|
||||||
|
@ -113,7 +116,6 @@ struct ContentByChannelView: View {
|
||||||
.setAppStep(step: .creatorDetail(userId: content.creatorId))
|
.setAppStep(step: .creatorDetail(userId: content.creatorId))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.padding(.horizontal, 13.3)
|
|
||||||
.onTapGesture {
|
.onTapGesture {
|
||||||
AppState
|
AppState
|
||||||
.shared
|
.shared
|
||||||
|
@ -121,7 +123,7 @@ struct ContentByChannelView: View {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.padding(.horizontal, 13.3)
|
||||||
}
|
}
|
||||||
.onAppear {
|
.onAppear {
|
||||||
if !self.creatorList.isEmpty {
|
if !self.creatorList.isEmpty {
|
||||||
|
|
Loading…
Reference in New Issue