├── .gitignore ├── LICENSE ├── PlaygroundForAppleUIKit.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── swiftpm │ └── Package.resolved ├── PlaygroundForAppleUIKit ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── ImagePicker.swift ├── Info.plist ├── SceneDelegate.swift └── ViewController.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-apple-uikit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-apple-uikit/HEAD/LICENSE -------------------------------------------------------------------------------- /PlaygroundForAppleUIKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-apple-uikit/HEAD/PlaygroundForAppleUIKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PlaygroundForAppleUIKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-apple-uikit/HEAD/PlaygroundForAppleUIKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PlaygroundForAppleUIKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-apple-uikit/HEAD/PlaygroundForAppleUIKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /PlaygroundForAppleUIKit.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-apple-uikit/HEAD/PlaygroundForAppleUIKit.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /PlaygroundForAppleUIKit/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-apple-uikit/HEAD/PlaygroundForAppleUIKit/AppDelegate.swift -------------------------------------------------------------------------------- /PlaygroundForAppleUIKit/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-apple-uikit/HEAD/PlaygroundForAppleUIKit/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /PlaygroundForAppleUIKit/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-apple-uikit/HEAD/PlaygroundForAppleUIKit/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PlaygroundForAppleUIKit/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-apple-uikit/HEAD/PlaygroundForAppleUIKit/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /PlaygroundForAppleUIKit/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-apple-uikit/HEAD/PlaygroundForAppleUIKit/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /PlaygroundForAppleUIKit/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-apple-uikit/HEAD/PlaygroundForAppleUIKit/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PlaygroundForAppleUIKit/ImagePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-apple-uikit/HEAD/PlaygroundForAppleUIKit/ImagePicker.swift -------------------------------------------------------------------------------- /PlaygroundForAppleUIKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-apple-uikit/HEAD/PlaygroundForAppleUIKit/Info.plist -------------------------------------------------------------------------------- /PlaygroundForAppleUIKit/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-apple-uikit/HEAD/PlaygroundForAppleUIKit/SceneDelegate.swift -------------------------------------------------------------------------------- /PlaygroundForAppleUIKit/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-apple-uikit/HEAD/PlaygroundForAppleUIKit/ViewController.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appwrite/playground-for-apple-uikit/HEAD/README.md --------------------------------------------------------------------------------