gitextract_z12ur_l3/ ├── .gitignore ├── .swiftpm/ │ └── xcode/ │ └── package.xcworkspace/ │ └── xcshareddata/ │ └── IDEWorkspaceChecks.plist ├── Demo/ │ ├── UIKit-Storyboard-WelcomeSheetDemo/ │ │ ├── Readme.md │ │ ├── UIKit-Storyboard-WelcomeSheetDemo/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── gears.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj/ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ ├── SceneDelegate.swift │ │ │ └── ViewController.swift │ │ └── UIKit-Storyboard-WelcomeSheetDemo.xcodeproj/ │ │ ├── project.pbxproj │ │ └── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ ├── UIKit-WelcomeSheetDemo/ │ │ ├── UIKit-WelcomeSheetDemo/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── gears.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj/ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ ├── SceneDelegate.swift │ │ │ └── ViewController.swift │ │ └── UIKit-WelcomeSheetDemo.xcodeproj/ │ │ ├── project.pbxproj │ │ └── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── WelcomeSheetDemo/ │ ├── Shared/ │ │ ├── Assets.xcassets/ │ │ │ ├── AccentColor.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── gears.imageset/ │ │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── WelcomeSheetDemoApp.swift │ │ └── demo.json │ ├── WelcomeSheetDemo.xcodeproj/ │ │ └── project.pbxproj │ └── macOS/ │ └── macOS.entitlements ├── Documentation/ │ └── UIKit/ │ └── Readme.md ├── LICENSE ├── Package.swift ├── README.md └── Sources/ └── WelcomeSheet/ ├── Dimensions/ │ ├── iPadSheetDimensions.swift │ └── iPhoneDimensions.swift ├── Extensions/ │ ├── AnyView+Extensitons.swift │ ├── Color+Extensions.swift │ ├── UIColor+Extensions.swift │ └── UIImage+Extensions.swift ├── Models/ │ ├── UIWelcomeSheetPage.swift │ ├── UIWelcomeSheetPageRow.swift │ ├── WelcomeSheetPage.swift │ └── WelcomeSheetPageRow.swift ├── Views/ │ ├── HorizontalAlignment.swift │ ├── OptionalButtonView.swift │ ├── ScrollOnlyOnOverflow.swift │ ├── WelcomeSheetModal.swift │ ├── WelcomeSheetPageView.swift │ └── WelcomeSheetView.swift ├── WelcomeSheet.swift ├── WelcomeSheetController.swift └── WelcomeSheetStoryboardController.swift