gitextract_8knwvjye/ ├── .github/ │ └── ISSUE_TEMPLATE/ │ └── bug_report.md ├── .gitignore ├── Examples/ │ ├── LazyPagerExample.xcodeproj/ │ │ ├── project.pbxproj │ │ └── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ ├── LazyPagerExampleApp/ │ │ ├── AnimatedPagerControlsExample.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AccentColor.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── nora1.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── nora2.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── nora3.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── nora4.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── nora5.imageset/ │ │ │ │ └── Contents.json │ │ │ └── nora6.imageset/ │ │ │ └── Contents.json │ │ ├── EnvironmentExample.swift │ │ ├── FullTestView.swift │ │ ├── InsetTest.swift │ │ ├── LazyPagerExampleApp.swift │ │ ├── Preview Content/ │ │ │ └── Preview Assets.xcassets/ │ │ │ └── Contents.json │ │ ├── SimpleExample.swift │ │ └── VerticalMediaPager.swift │ ├── LazyPagerExampleAppTests/ │ │ └── LazyPagerExampleAppTests.swift │ └── LazyPagerExampleAppUITests/ │ ├── ImageScrollViewUITests.swift │ └── ImageScrollViewUITestsLaunchTests.swift ├── LICENSE ├── Package.swift ├── README.md ├── Sources/ │ └── LazyPager/ │ ├── ClearFullScreenBackground.swift │ ├── Collection+Extensions.swift │ ├── LazyPager.swift │ ├── Math.swift │ ├── PagerView.swift │ ├── ViewDataProvider.swift │ └── ZoomableView.swift └── Tests/ └── LazyPagerTests/ └── LazyPagerTests.swift