새로운 콘텐츠 전체보기 테마영역, 인기 콘텐츠 전체 보기 정렬영역 높이 수정
AS-IS : LazyHStack을 사용해서 화면 전체영역만큼 차지함 TO-BE : HStack으로 변경 - 내용이 얼마 되지 않으므로 성능 차이가 나지 않는다.
This commit is contained in:
@@ -15,7 +15,7 @@ struct ContentMainNewContentThemeView: View {
|
||||
|
||||
var body: some View {
|
||||
ScrollView(.horizontal, showsIndicators: false) {
|
||||
LazyHStack(alignment: .top, spacing: 8) {
|
||||
HStack(spacing: 8) {
|
||||
ForEach(0..<themes.count, id: \.self) { index in
|
||||
let theme = themes[index]
|
||||
Text(theme)
|
||||
|
Reference in New Issue
Block a user