From 9c3a1490dd368aaa61e8e9ca58ab73c3218b4b1b Mon Sep 17 00:00:00 2001 From: Dan McKinley Date: Sun, 22 Sep 2024 18:40:23 -0700 Subject: [PATCH] fixes #140, problem where only the first tab appears on ios 18 --- Sources/PagerTabStripView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/PagerTabStripView.swift b/Sources/PagerTabStripView.swift index d1ad598..0825204 100644 --- a/Sources/PagerTabStripView.swift +++ b/Sources/PagerTabStripView.swift @@ -92,7 +92,7 @@ private struct WrapperPagerTabStripView: View where Sele @MainActor public var body: some View { GeometryReader { geometryProxy in - LazyHStack(spacing: 0) { + HStack(spacing: 0) { content .frame(width: geometryProxy.size.width) }