├── PsychotherapyApp ├── Podfile ├── Podfile.lock ├── PsychotherapyApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── cardoso.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── cardoso.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── PsychotherapyApp.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── cardoso.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── PsychotherapyApp │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── Join │ ├── JoinViewController+Constraints.swift │ ├── JoinViewController+Handlers.swift │ ├── JoinViewController+Views.swift │ └── JoinViewController.swift │ ├── SceneDelegate.swift │ ├── Therapy │ ├── TherapyViewController+Call.swift │ ├── TherapyViewController+Chat.swift │ ├── TherapyViewController+Handlers.swift │ ├── TherapyViewController+Views.swift │ └── TherapyViewController.swift │ └── ViewController.swift └── README.md /PsychotherapyApp/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/Podfile -------------------------------------------------------------------------------- /PsychotherapyApp/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/Podfile.lock -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp.xcodeproj/project.xcworkspace/xcuserdata/cardoso.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp.xcodeproj/project.xcworkspace/xcuserdata/cardoso.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp.xcodeproj/xcuserdata/cardoso.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp.xcodeproj/xcuserdata/cardoso.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp.xcworkspace/xcuserdata/cardoso.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp.xcworkspace/xcuserdata/cardoso.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp/AppDelegate.swift -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp/Info.plist -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp/Join/JoinViewController+Constraints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp/Join/JoinViewController+Constraints.swift -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp/Join/JoinViewController+Handlers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp/Join/JoinViewController+Handlers.swift -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp/Join/JoinViewController+Views.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp/Join/JoinViewController+Views.swift -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp/Join/JoinViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp/Join/JoinViewController.swift -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp/SceneDelegate.swift -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp/Therapy/TherapyViewController+Call.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp/Therapy/TherapyViewController+Call.swift -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp/Therapy/TherapyViewController+Chat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp/Therapy/TherapyViewController+Chat.swift -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp/Therapy/TherapyViewController+Handlers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp/Therapy/TherapyViewController+Handlers.swift -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp/Therapy/TherapyViewController+Views.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp/Therapy/TherapyViewController+Views.swift -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp/Therapy/TherapyViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp/Therapy/TherapyViewController.swift -------------------------------------------------------------------------------- /PsychotherapyApp/PsychotherapyApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/PsychotherapyApp/PsychotherapyApp/ViewController.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/psychotherapy-app-ios/HEAD/README.md --------------------------------------------------------------------------------