├── .codecov.yml ├── .github └── workflows │ └── CI.yml ├── .gitignore ├── .swiftlint.yml ├── Assets ├── demo.gif ├── logo.sketch └── logo.svg ├── Example ├── StackableTableViewExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── StackableTableViewExample │ ├── AppDelegate.swift │ ├── Supporting │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Extensions.swift │ └── Info.plist │ ├── ViewController.swift │ └── Views │ ├── LoremIpsumView.swift │ ├── SliderView.swift │ ├── TagsView.swift │ └── WebView.swift ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Package.swift ├── README.md ├── Sources ├── Info.plist ├── StackableTableView.h └── StackableTableView.swift ├── StackableTableView.podspec ├── StackableTableView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── StackableTableView.xcscheme └── Tests ├── Info.plist ├── StackableTableViewTests+Helpers.swift └── StackableTableViewTests.swift /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- 1 | disabled_rules: 2 | - line_length -------------------------------------------------------------------------------- /Assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Assets/demo.gif -------------------------------------------------------------------------------- /Assets/logo.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Assets/logo.sketch -------------------------------------------------------------------------------- /Assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Assets/logo.svg -------------------------------------------------------------------------------- /Example/StackableTableViewExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Example/StackableTableViewExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/StackableTableViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Example/StackableTableViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/StackableTableViewExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Example/StackableTableViewExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/StackableTableViewExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Example/StackableTableViewExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Example/StackableTableViewExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Example/StackableTableViewExample/AppDelegate.swift -------------------------------------------------------------------------------- /Example/StackableTableViewExample/Supporting/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Example/StackableTableViewExample/Supporting/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/StackableTableViewExample/Supporting/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Example/StackableTableViewExample/Supporting/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/StackableTableViewExample/Supporting/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Example/StackableTableViewExample/Supporting/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/StackableTableViewExample/Supporting/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Example/StackableTableViewExample/Supporting/Extensions.swift -------------------------------------------------------------------------------- /Example/StackableTableViewExample/Supporting/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Example/StackableTableViewExample/Supporting/Info.plist -------------------------------------------------------------------------------- /Example/StackableTableViewExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Example/StackableTableViewExample/ViewController.swift -------------------------------------------------------------------------------- /Example/StackableTableViewExample/Views/LoremIpsumView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Example/StackableTableViewExample/Views/LoremIpsumView.swift -------------------------------------------------------------------------------- /Example/StackableTableViewExample/Views/SliderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Example/StackableTableViewExample/Views/SliderView.swift -------------------------------------------------------------------------------- /Example/StackableTableViewExample/Views/TagsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Example/StackableTableViewExample/Views/TagsView.swift -------------------------------------------------------------------------------- /Example/StackableTableViewExample/Views/WebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Example/StackableTableViewExample/Views/WebView.swift -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Sources/Info.plist -------------------------------------------------------------------------------- /Sources/StackableTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Sources/StackableTableView.h -------------------------------------------------------------------------------- /Sources/StackableTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Sources/StackableTableView.swift -------------------------------------------------------------------------------- /StackableTableView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/StackableTableView.podspec -------------------------------------------------------------------------------- /StackableTableView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/StackableTableView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /StackableTableView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/StackableTableView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /StackableTableView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/StackableTableView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /StackableTableView.xcodeproj/xcshareddata/xcschemes/StackableTableView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/StackableTableView.xcodeproj/xcshareddata/xcschemes/StackableTableView.xcscheme -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Tests/Info.plist -------------------------------------------------------------------------------- /Tests/StackableTableViewTests+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Tests/StackableTableViewTests+Helpers.swift -------------------------------------------------------------------------------- /Tests/StackableTableViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralbeik/StackableTableView/HEAD/Tests/StackableTableViewTests.swift --------------------------------------------------------------------------------