콘텐츠 메인 시리즈 탭
- 아이템 width 고정
This commit is contained in:
@@ -89,7 +89,7 @@ struct ContentMainTabRankContentView: View {
|
|||||||
.foregroundColor(.gray77)
|
.foregroundColor(.gray77)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.frame(maxWidth: screenSize().width * 0.66, alignment: .leading)
|
.frame(width: screenSize().width * 0.66, alignment: .leading)
|
||||||
.contentShape(Rectangle())
|
.contentShape(Rectangle())
|
||||||
.onTapGesture {
|
.onTapGesture {
|
||||||
AppState
|
AppState
|
||||||
|
@@ -13,9 +13,9 @@ struct ContentMainSeriesRankingView: View {
|
|||||||
let seriesList: [SeriesListItem]
|
let seriesList: [SeriesListItem]
|
||||||
|
|
||||||
let rows = [
|
let rows = [
|
||||||
GridItem(.flexible(minimum: 85), alignment: .leading),
|
GridItem(.fixed(85), alignment: .leading),
|
||||||
GridItem(.flexible(minimum: 85), alignment: .leading),
|
GridItem(.fixed(85), alignment: .leading),
|
||||||
GridItem(.flexible(minimum: 85), alignment: .leading)
|
GridItem(.fixed(85), alignment: .leading)
|
||||||
]
|
]
|
||||||
|
|
||||||
var body: some View {
|
var body: some View {
|
||||||
@@ -58,7 +58,7 @@ struct ContentMainSeriesRankingView: View {
|
|||||||
.foregroundColor(.gray77)
|
.foregroundColor(.gray77)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.frame(maxWidth: screenSize().width * 0.66, alignment: .leading)
|
.frame(width: screenSize().width * 0.66, alignment: .leading)
|
||||||
.contentShape(Rectangle())
|
.contentShape(Rectangle())
|
||||||
.onTapGesture {
|
.onTapGesture {
|
||||||
AppState
|
AppState
|
||||||
|
Reference in New Issue
Block a user