├── .gitignore ├── FoldableScrolling.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── kevinli.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── FoldableScrolling ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── blackPearl.colorset │ │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── Date+toString.swift ├── Info.plist ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── SceneDelegate.swift ├── View+ExitOnDrag.swift ├── View+ExpandableAndFoldable.swift ├── Visit.swift ├── VisitDetailsView.swift └── VisitsListView.swift ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThasianX/Foldable-And-Expandable-List-SwiftUI/HEAD/.gitignore -------------------------------------------------------------------------------- /FoldableScrolling.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThasianX/Foldable-And-Expandable-List-SwiftUI/HEAD/FoldableScrolling.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FoldableScrolling.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThasianX/Foldable-And-Expandable-List-SwiftUI/HEAD/FoldableScrolling.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FoldableScrolling.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThasianX/Foldable-And-Expandable-List-SwiftUI/HEAD/FoldableScrolling.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FoldableScrolling.xcodeproj/xcuserdata/kevinli.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThasianX/Foldable-And-Expandable-List-SwiftUI/HEAD/FoldableScrolling.xcodeproj/xcuserdata/kevinli.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FoldableScrolling/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThasianX/Foldable-And-Expandable-List-SwiftUI/HEAD/FoldableScrolling/AppDelegate.swift -------------------------------------------------------------------------------- /FoldableScrolling/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThasianX/Foldable-And-Expandable-List-SwiftUI/HEAD/FoldableScrolling/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FoldableScrolling/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThasianX/Foldable-And-Expandable-List-SwiftUI/HEAD/FoldableScrolling/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FoldableScrolling/Assets.xcassets/blackPearl.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThasianX/Foldable-And-Expandable-List-SwiftUI/HEAD/FoldableScrolling/Assets.xcassets/blackPearl.colorset/Contents.json -------------------------------------------------------------------------------- /FoldableScrolling/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThasianX/Foldable-And-Expandable-List-SwiftUI/HEAD/FoldableScrolling/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FoldableScrolling/Date+toString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThasianX/Foldable-And-Expandable-List-SwiftUI/HEAD/FoldableScrolling/Date+toString.swift -------------------------------------------------------------------------------- /FoldableScrolling/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThasianX/Foldable-And-Expandable-List-SwiftUI/HEAD/FoldableScrolling/Info.plist -------------------------------------------------------------------------------- /FoldableScrolling/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThasianX/Foldable-And-Expandable-List-SwiftUI/HEAD/FoldableScrolling/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FoldableScrolling/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThasianX/Foldable-And-Expandable-List-SwiftUI/HEAD/FoldableScrolling/SceneDelegate.swift -------------------------------------------------------------------------------- /FoldableScrolling/View+ExitOnDrag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThasianX/Foldable-And-Expandable-List-SwiftUI/HEAD/FoldableScrolling/View+ExitOnDrag.swift -------------------------------------------------------------------------------- /FoldableScrolling/View+ExpandableAndFoldable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThasianX/Foldable-And-Expandable-List-SwiftUI/HEAD/FoldableScrolling/View+ExpandableAndFoldable.swift -------------------------------------------------------------------------------- /FoldableScrolling/Visit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThasianX/Foldable-And-Expandable-List-SwiftUI/HEAD/FoldableScrolling/Visit.swift -------------------------------------------------------------------------------- /FoldableScrolling/VisitDetailsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThasianX/Foldable-And-Expandable-List-SwiftUI/HEAD/FoldableScrolling/VisitDetailsView.swift -------------------------------------------------------------------------------- /FoldableScrolling/VisitsListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThasianX/Foldable-And-Expandable-List-SwiftUI/HEAD/FoldableScrolling/VisitsListView.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThasianX/Foldable-And-Expandable-List-SwiftUI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThasianX/Foldable-And-Expandable-List-SwiftUI/HEAD/README.md --------------------------------------------------------------------------------