├── .gitignore ├── Licence.txt ├── PartialTable.xcodeproj └── project.pbxproj ├── PartialTable ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── ContentView.swift ├── Info.plist ├── ItemRow.swift ├── LoadMoreButton.swift ├── Model │ ├── DataSource.swift │ └── Item.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json └── SceneDelegate.swift └── README.markdown /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abizern/PartialTable/HEAD/.gitignore -------------------------------------------------------------------------------- /Licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abizern/PartialTable/HEAD/Licence.txt -------------------------------------------------------------------------------- /PartialTable.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abizern/PartialTable/HEAD/PartialTable.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PartialTable/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abizern/PartialTable/HEAD/PartialTable/AppDelegate.swift -------------------------------------------------------------------------------- /PartialTable/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abizern/PartialTable/HEAD/PartialTable/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PartialTable/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abizern/PartialTable/HEAD/PartialTable/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /PartialTable/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abizern/PartialTable/HEAD/PartialTable/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /PartialTable/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abizern/PartialTable/HEAD/PartialTable/ContentView.swift -------------------------------------------------------------------------------- /PartialTable/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abizern/PartialTable/HEAD/PartialTable/Info.plist -------------------------------------------------------------------------------- /PartialTable/ItemRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abizern/PartialTable/HEAD/PartialTable/ItemRow.swift -------------------------------------------------------------------------------- /PartialTable/LoadMoreButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abizern/PartialTable/HEAD/PartialTable/LoadMoreButton.swift -------------------------------------------------------------------------------- /PartialTable/Model/DataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abizern/PartialTable/HEAD/PartialTable/Model/DataSource.swift -------------------------------------------------------------------------------- /PartialTable/Model/Item.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abizern/PartialTable/HEAD/PartialTable/Model/Item.swift -------------------------------------------------------------------------------- /PartialTable/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abizern/PartialTable/HEAD/PartialTable/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /PartialTable/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abizern/PartialTable/HEAD/PartialTable/SceneDelegate.swift -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abizern/PartialTable/HEAD/README.markdown --------------------------------------------------------------------------------