Skip to content

Instantly share code, notes, and snippets.

View EngOmarElsayed's full-sized avatar
🎯
Focusing

Omar Elsayed EngOmarElsayed

🎯
Focusing
View GitHub Profile
@EngOmarElsayed
EngOmarElsayed / HoriznatlPagingScrollView.swift
Last active April 4, 2025 02:21
A custom Container I created to easily create Paging scroll view in swiftUI, article: https://thinkdiffrent.substack.com/p/creating-paging-scrollview-using
#Preview {
@Previewable @State var currentPage = 0
HPagingScrollView(currentPage: $currentPage, spacing: 30, pageWidth: 200, pageHeight: 450) {
RoundedRectangle(cornerRadius: 20)
RoundedRectangle(cornerRadius: 20)
RoundedRectangle(cornerRadius: 20)
RoundedRectangle(cornerRadius: 20)
}