From eee372609bc6ed8f777d0d0884d8e9d25074e266 Mon Sep 17 00:00:00 2001 From: Dan McKinley Date: Thu, 17 Oct 2024 14:23:10 -0700 Subject: [PATCH] fixes #140, problem where only the first tab appears on ios 18 (#141) --- 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) }