├── .gitignore ├── README.md ├── TestSidebar ├── App.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Info.plist ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json └── TestSidebar.entitlements ├── TribleTroubleiPad ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Info.plist └── Preview Content │ └── Preview Assets.xcassets │ └── Contents.json └── TripleTrouble.xcodeproj ├── project.pbxproj └── project.xcworkspace ├── contents.xcworkspacedata └── xcshareddata └── IDEWorkspaceChecks.plist /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | xcuserdata/ 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/ThreeColumnNavigation/HEAD/README.md -------------------------------------------------------------------------------- /TestSidebar/App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/ThreeColumnNavigation/HEAD/TestSidebar/App.swift -------------------------------------------------------------------------------- /TestSidebar/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/ThreeColumnNavigation/HEAD/TestSidebar/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /TestSidebar/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/ThreeColumnNavigation/HEAD/TestSidebar/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TestSidebar/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/ThreeColumnNavigation/HEAD/TestSidebar/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TestSidebar/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/ThreeColumnNavigation/HEAD/TestSidebar/Info.plist -------------------------------------------------------------------------------- /TestSidebar/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/ThreeColumnNavigation/HEAD/TestSidebar/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TestSidebar/TestSidebar.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/ThreeColumnNavigation/HEAD/TestSidebar/TestSidebar.entitlements -------------------------------------------------------------------------------- /TribleTroubleiPad/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/ThreeColumnNavigation/HEAD/TribleTroubleiPad/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /TribleTroubleiPad/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/ThreeColumnNavigation/HEAD/TribleTroubleiPad/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TribleTroubleiPad/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/ThreeColumnNavigation/HEAD/TribleTroubleiPad/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TribleTroubleiPad/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/ThreeColumnNavigation/HEAD/TribleTroubleiPad/Info.plist -------------------------------------------------------------------------------- /TribleTroubleiPad/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/ThreeColumnNavigation/HEAD/TribleTroubleiPad/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TripleTrouble.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/ThreeColumnNavigation/HEAD/TripleTrouble.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TripleTrouble.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/ThreeColumnNavigation/HEAD/TripleTrouble.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TripleTrouble.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/ThreeColumnNavigation/HEAD/TripleTrouble.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist --------------------------------------------------------------------------------