From 37ff16df5527485209ac9aba5a1bf38f2423fd07 Mon Sep 17 00:00:00 2001 From: MrRefactor Date: Mon, 6 Apr 2026 21:25:59 +0200 Subject: [PATCH] impr(ios): remove scroll indicators on changing pages --- ios/PagerView.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ios/PagerView.swift b/ios/PagerView.swift index 4b866290..9b494bd6 100644 --- a/ios/PagerView.swift +++ b/ios/PagerView.swift @@ -26,6 +26,8 @@ struct PagerView: View { collectionView.bounces = props.overdrag collectionView.isScrollEnabled = props.scrollEnabled collectionView.keyboardDismissMode = props.keyboardDismissMode + collectionView.showsVerticalScrollIndicator = false + collectionView.showsHorizontalScrollIndicator = false if let layout = collectionView.collectionViewLayout as? UICollectionViewFlowLayout { layout.scrollDirection = props.orientation