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 January 15, 2026 18:05
A custom Container I created to easily create Paging scroll view in swiftUI, For article: https://www.swiftdifferently.com
#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)
}