├── .gitignore ├── ImagePicker.sln ├── Images ├── demo.gif ├── icon.png └── logo.png ├── LICENSE ├── README.md ├── azure-pipelines ├── dev.yml ├── nuget.yml └── templates │ ├── setup-dotnet.yml │ └── vars.yml ├── samples ├── AppDelegate.cs ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ └── iTunesArtwork@2x.png │ ├── Contents.json │ ├── background-rounded.imageset │ │ ├── Contents.json │ │ └── background-rounded.pdf │ ├── button-camera.imageset │ │ ├── Contents.json │ │ └── button-camera.pdf │ ├── button-photo-library.imageset │ │ ├── Contents.json │ │ └── button-photo-library.pdf │ ├── gradient.imageset │ │ ├── Contents.json │ │ ├── gradient.png │ │ ├── gradient@2x.png │ │ └── gradient@3x.png │ ├── ic-check.imageset │ │ ├── Contents.json │ │ └── ic-check.pdf │ ├── icon-badge-livephoto.imageset │ │ ├── Contents.json │ │ └── icon-badge-livephoto.pdf │ ├── icon-badge-video.imageset │ │ ├── Contents.json │ │ └── icon-badge-video.pdf │ ├── icon-check-background.imageset │ │ ├── Contents.json │ │ └── icon-ckeck-background.pdf │ ├── icon-depth.imageset │ │ ├── Contents.json │ │ └── icon-depth.pdf │ ├── icon-flip-camera.imageset │ │ ├── Contents.json │ │ └── flipCamera.pdf │ ├── icon-live-off.imageset │ │ ├── Contents.json │ │ └── icon-live-off.pdf │ ├── icon-live-on.imageset │ │ ├── Contents.json │ │ └── icon-live-on.pdf │ ├── icon-live.imageset │ │ ├── Contents.json │ │ └── icon-live.pdf │ └── icon-pano.imageset │ │ ├── Contents.json │ │ └── icon-pano.pdf ├── CustomViews │ ├── CustomImageCell.cs │ ├── CustomImageCell.designer.cs │ ├── CustomImageCell.xib │ ├── CustomVideoCell.cs │ ├── CustomVideoCell.designer.cs │ ├── CustomVideoCell.xib │ ├── IconWithTextCell.cs │ ├── IconWithTextCell.designer.cs │ └── IconWithTextCell.xib ├── Entitlements.plist ├── ImagePickerConfigurationHandlerClass.cs ├── ImagePickerControllerDataSource.cs ├── ImagePickerControllerDelegate.cs ├── Info.plist ├── LaunchScreen.storyboard ├── Main.cs ├── Main.storyboard ├── Models │ ├── CellItemModel.cs │ └── Enums │ │ ├── AssetsSource.cs │ │ ├── CameraItemConfig.cs │ │ └── SelectorArgument.cs ├── Softeq.ImagePicker.Sample.csproj ├── ViewController.cs └── ViewController.designer.cs └── src ├── Assets └── Assets.xcassets │ ├── Contents.json │ ├── background-rounded.imageset │ ├── Contents.json │ └── background-rounded.pdf │ ├── button-camera.imageset │ ├── Contents.json │ └── button-camera.pdf │ ├── button-photo-library.imageset │ ├── Contents.json │ └── button-photo-library.pdf │ ├── gradient.imageset │ ├── Contents.json │ ├── gradient.png │ ├── gradient@2x.png │ └── gradient@3x.png │ ├── icon-badge-livephoto.imageset │ ├── Contents.json │ └── icon-badge-livephoto.pdf │ ├── icon-badge-video.imageset │ ├── Contents.json │ └── icon-badge-video.pdf │ ├── icon-check-background.imageset │ ├── Contents.json │ └── icon-ckeck-background.pdf │ ├── icon-check.imageset │ ├── Contents.json │ └── icon-check.pdf │ ├── icon-flip-camera.imageset │ ├── Contents.json │ └── flipCamera.pdf │ ├── icon-live-off.imageset │ ├── Contents.json │ └── icon-live-off.pdf │ └── icon-live-on.imageset │ ├── Contents.json │ └── icon-live-on.pdf ├── Defines.cs ├── GlobalUsings.cs ├── ImagePickerAssetModel.cs ├── ImagePickerDataSource.cs ├── ImagePickerDelegate.cs ├── ImagePickerLayout.cs ├── Infrastructure ├── Enums │ ├── CameraMode.cs │ ├── LivePhotoMode.cs │ ├── SessionSetupResult.cs │ └── VideoDisplayMode.cs ├── Extensions │ ├── UICollectionViewExtensions.cs │ └── UIImageExtensions.cs ├── ImagePickerException.cs └── Interfaces │ ├── ICameraCollectionViewCellDelegate.cs │ ├── ICaptureSessionDelegate.cs │ ├── ICaptureSessionVideoRecordingDelegate.cs │ ├── IImagePickerDelegate.cs │ └── ISessionPhotoCapturingDelegate.cs ├── LayoutModel.cs ├── Media ├── AVPreviewView.cs ├── Capture │ ├── AudioCaptureSession.cs │ ├── CaptureNotificationCenterHandler.cs │ ├── CaptureSession.cs │ ├── PhotoCaptureSession.cs │ ├── VideoCaptureSession.cs │ └── VideoDeviceInputManager.cs ├── CaptureFactory.cs ├── Delegates │ ├── CaptureSessionDelegate.cs │ ├── CaptureSessionVideoRecordingDelegate.cs │ ├── PhotoCaptureDelegate.cs │ ├── SessionPhotoCapturingDelegate.cs │ └── VideoCaptureDelegate.cs ├── PHAssetManager.cs └── SessionPresetConfiguration.cs ├── Operations ├── CollectionViewBatchAnimation.cs └── CollectionViewUpdatesCoordinator.cs ├── Public ├── Appearance.cs ├── CameraCollectionViewCell.cs ├── CaptureSettings.cs ├── CellRegistrator.cs ├── Delegates │ ├── CameraCollectionViewCellDelegate.cs │ └── ImagePickerControllerDelegate.cs ├── ImagePickerController.cs ├── ImagePickerControllerDataSource.cs ├── ImagePickerControllerPublicApi.cs └── LayoutConfiguration.cs ├── Softeq.ImagePicker.csproj └── Views ├── ActionCell.cs ├── ActionCell.designer.cs ├── ActionCell.xib ├── AssetCell.cs ├── CustomControls ├── CarvedLabel.cs ├── CheckView.cs ├── LayersState.cs ├── RecordButton.cs ├── RecordDurationLabel.cs ├── ShutterButton.cs └── StationaryButton.cs ├── ImagePickerAssetCell.cs ├── ImagePickerView.cs ├── ImagePickerView.designer.cs ├── ImagePickerView.xib ├── LivePhotoCameraCell.cs ├── LivePhotoCameraCell.designer.cs ├── LivePhotoCameraCell.xib ├── VideoAssetCell.cs ├── VideoCameraCell.cs ├── VideoCameraCell.designer.cs └── VideoCameraCell.xib /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /ImagePicker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/ImagePicker.sln -------------------------------------------------------------------------------- /Images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/Images/demo.gif -------------------------------------------------------------------------------- /Images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/Images/icon.png -------------------------------------------------------------------------------- /Images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/Images/logo.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines/dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/azure-pipelines/dev.yml -------------------------------------------------------------------------------- /azure-pipelines/nuget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/azure-pipelines/nuget.yml -------------------------------------------------------------------------------- /azure-pipelines/templates/setup-dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/azure-pipelines/templates/setup-dotnet.yml -------------------------------------------------------------------------------- /azure-pipelines/templates/vars.yml: -------------------------------------------------------------------------------- 1 | variables: 2 | MACOS_VM_IMAGE: 'macos-12' -------------------------------------------------------------------------------- /samples/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/AppDelegate.cs -------------------------------------------------------------------------------- /samples/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /samples/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /samples/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /samples/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /samples/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /samples/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /samples/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /samples/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /samples/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /samples/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /samples/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /samples/Assets.xcassets/background-rounded.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/background-rounded.imageset/Contents.json -------------------------------------------------------------------------------- /samples/Assets.xcassets/background-rounded.imageset/background-rounded.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/background-rounded.imageset/background-rounded.pdf -------------------------------------------------------------------------------- /samples/Assets.xcassets/button-camera.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/button-camera.imageset/Contents.json -------------------------------------------------------------------------------- /samples/Assets.xcassets/button-camera.imageset/button-camera.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/button-camera.imageset/button-camera.pdf -------------------------------------------------------------------------------- /samples/Assets.xcassets/button-photo-library.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/button-photo-library.imageset/Contents.json -------------------------------------------------------------------------------- /samples/Assets.xcassets/button-photo-library.imageset/button-photo-library.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/button-photo-library.imageset/button-photo-library.pdf -------------------------------------------------------------------------------- /samples/Assets.xcassets/gradient.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/gradient.imageset/Contents.json -------------------------------------------------------------------------------- /samples/Assets.xcassets/gradient.imageset/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/gradient.imageset/gradient.png -------------------------------------------------------------------------------- /samples/Assets.xcassets/gradient.imageset/gradient@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/gradient.imageset/gradient@2x.png -------------------------------------------------------------------------------- /samples/Assets.xcassets/gradient.imageset/gradient@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/gradient.imageset/gradient@3x.png -------------------------------------------------------------------------------- /samples/Assets.xcassets/ic-check.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/ic-check.imageset/Contents.json -------------------------------------------------------------------------------- /samples/Assets.xcassets/ic-check.imageset/ic-check.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/ic-check.imageset/ic-check.pdf -------------------------------------------------------------------------------- /samples/Assets.xcassets/icon-badge-livephoto.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/icon-badge-livephoto.imageset/Contents.json -------------------------------------------------------------------------------- /samples/Assets.xcassets/icon-badge-livephoto.imageset/icon-badge-livephoto.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/icon-badge-livephoto.imageset/icon-badge-livephoto.pdf -------------------------------------------------------------------------------- /samples/Assets.xcassets/icon-badge-video.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/icon-badge-video.imageset/Contents.json -------------------------------------------------------------------------------- /samples/Assets.xcassets/icon-badge-video.imageset/icon-badge-video.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/icon-badge-video.imageset/icon-badge-video.pdf -------------------------------------------------------------------------------- /samples/Assets.xcassets/icon-check-background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/icon-check-background.imageset/Contents.json -------------------------------------------------------------------------------- /samples/Assets.xcassets/icon-check-background.imageset/icon-ckeck-background.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/icon-check-background.imageset/icon-ckeck-background.pdf -------------------------------------------------------------------------------- /samples/Assets.xcassets/icon-depth.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/icon-depth.imageset/Contents.json -------------------------------------------------------------------------------- /samples/Assets.xcassets/icon-depth.imageset/icon-depth.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/icon-depth.imageset/icon-depth.pdf -------------------------------------------------------------------------------- /samples/Assets.xcassets/icon-flip-camera.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/icon-flip-camera.imageset/Contents.json -------------------------------------------------------------------------------- /samples/Assets.xcassets/icon-flip-camera.imageset/flipCamera.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/icon-flip-camera.imageset/flipCamera.pdf -------------------------------------------------------------------------------- /samples/Assets.xcassets/icon-live-off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/icon-live-off.imageset/Contents.json -------------------------------------------------------------------------------- /samples/Assets.xcassets/icon-live-off.imageset/icon-live-off.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/icon-live-off.imageset/icon-live-off.pdf -------------------------------------------------------------------------------- /samples/Assets.xcassets/icon-live-on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/icon-live-on.imageset/Contents.json -------------------------------------------------------------------------------- /samples/Assets.xcassets/icon-live-on.imageset/icon-live-on.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/icon-live-on.imageset/icon-live-on.pdf -------------------------------------------------------------------------------- /samples/Assets.xcassets/icon-live.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/icon-live.imageset/Contents.json -------------------------------------------------------------------------------- /samples/Assets.xcassets/icon-live.imageset/icon-live.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/icon-live.imageset/icon-live.pdf -------------------------------------------------------------------------------- /samples/Assets.xcassets/icon-pano.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/icon-pano.imageset/Contents.json -------------------------------------------------------------------------------- /samples/Assets.xcassets/icon-pano.imageset/icon-pano.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Assets.xcassets/icon-pano.imageset/icon-pano.pdf -------------------------------------------------------------------------------- /samples/CustomViews/CustomImageCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/CustomViews/CustomImageCell.cs -------------------------------------------------------------------------------- /samples/CustomViews/CustomImageCell.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/CustomViews/CustomImageCell.designer.cs -------------------------------------------------------------------------------- /samples/CustomViews/CustomImageCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/CustomViews/CustomImageCell.xib -------------------------------------------------------------------------------- /samples/CustomViews/CustomVideoCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/CustomViews/CustomVideoCell.cs -------------------------------------------------------------------------------- /samples/CustomViews/CustomVideoCell.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/CustomViews/CustomVideoCell.designer.cs -------------------------------------------------------------------------------- /samples/CustomViews/CustomVideoCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/CustomViews/CustomVideoCell.xib -------------------------------------------------------------------------------- /samples/CustomViews/IconWithTextCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/CustomViews/IconWithTextCell.cs -------------------------------------------------------------------------------- /samples/CustomViews/IconWithTextCell.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/CustomViews/IconWithTextCell.designer.cs -------------------------------------------------------------------------------- /samples/CustomViews/IconWithTextCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/CustomViews/IconWithTextCell.xib -------------------------------------------------------------------------------- /samples/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Entitlements.plist -------------------------------------------------------------------------------- /samples/ImagePickerConfigurationHandlerClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/ImagePickerConfigurationHandlerClass.cs -------------------------------------------------------------------------------- /samples/ImagePickerControllerDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/ImagePickerControllerDataSource.cs -------------------------------------------------------------------------------- /samples/ImagePickerControllerDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/ImagePickerControllerDelegate.cs -------------------------------------------------------------------------------- /samples/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Info.plist -------------------------------------------------------------------------------- /samples/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/LaunchScreen.storyboard -------------------------------------------------------------------------------- /samples/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Main.cs -------------------------------------------------------------------------------- /samples/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Main.storyboard -------------------------------------------------------------------------------- /samples/Models/CellItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Models/CellItemModel.cs -------------------------------------------------------------------------------- /samples/Models/Enums/AssetsSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Models/Enums/AssetsSource.cs -------------------------------------------------------------------------------- /samples/Models/Enums/CameraItemConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Models/Enums/CameraItemConfig.cs -------------------------------------------------------------------------------- /samples/Models/Enums/SelectorArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Models/Enums/SelectorArgument.cs -------------------------------------------------------------------------------- /samples/Softeq.ImagePicker.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/Softeq.ImagePicker.Sample.csproj -------------------------------------------------------------------------------- /samples/ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/ViewController.cs -------------------------------------------------------------------------------- /samples/ViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/samples/ViewController.designer.cs -------------------------------------------------------------------------------- /src/Assets/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Assets/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /src/Assets/Assets.xcassets/background-rounded.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Assets/Assets.xcassets/background-rounded.imageset/Contents.json -------------------------------------------------------------------------------- /src/Assets/Assets.xcassets/background-rounded.imageset/background-rounded.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Assets/Assets.xcassets/background-rounded.imageset/background-rounded.pdf -------------------------------------------------------------------------------- /src/Assets/Assets.xcassets/button-camera.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Assets/Assets.xcassets/button-camera.imageset/Contents.json -------------------------------------------------------------------------------- /src/Assets/Assets.xcassets/button-camera.imageset/button-camera.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Assets/Assets.xcassets/button-camera.imageset/button-camera.pdf -------------------------------------------------------------------------------- /src/Assets/Assets.xcassets/button-photo-library.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Assets/Assets.xcassets/button-photo-library.imageset/Contents.json -------------------------------------------------------------------------------- /src/Assets/Assets.xcassets/button-photo-library.imageset/button-photo-library.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Assets/Assets.xcassets/button-photo-library.imageset/button-photo-library.pdf -------------------------------------------------------------------------------- /src/Assets/Assets.xcassets/gradient.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Assets/Assets.xcassets/gradient.imageset/Contents.json -------------------------------------------------------------------------------- /src/Assets/Assets.xcassets/gradient.imageset/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Assets/Assets.xcassets/gradient.imageset/gradient.png -------------------------------------------------------------------------------- /src/Assets/Assets.xcassets/gradient.imageset/gradient@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Assets/Assets.xcassets/gradient.imageset/gradient@2x.png -------------------------------------------------------------------------------- /src/Assets/Assets.xcassets/gradient.imageset/gradient@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Assets/Assets.xcassets/gradient.imageset/gradient@3x.png -------------------------------------------------------------------------------- /src/Assets/Assets.xcassets/icon-badge-livephoto.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Assets/Assets.xcassets/icon-badge-livephoto.imageset/Contents.json -------------------------------------------------------------------------------- /src/Assets/Assets.xcassets/icon-badge-livephoto.imageset/icon-badge-livephoto.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Assets/Assets.xcassets/icon-badge-livephoto.imageset/icon-badge-livephoto.pdf -------------------------------------------------------------------------------- /src/Assets/Assets.xcassets/icon-badge-video.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Assets/Assets.xcassets/icon-badge-video.imageset/Contents.json -------------------------------------------------------------------------------- /src/Assets/Assets.xcassets/icon-badge-video.imageset/icon-badge-video.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Assets/Assets.xcassets/icon-badge-video.imageset/icon-badge-video.pdf -------------------------------------------------------------------------------- /src/Assets/Assets.xcassets/icon-check-background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Assets/Assets.xcassets/icon-check-background.imageset/Contents.json -------------------------------------------------------------------------------- /src/Assets/Assets.xcassets/icon-check-background.imageset/icon-ckeck-background.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Assets/Assets.xcassets/icon-check-background.imageset/icon-ckeck-background.pdf -------------------------------------------------------------------------------- /src/Assets/Assets.xcassets/icon-check.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Assets/Assets.xcassets/icon-check.imageset/Contents.json -------------------------------------------------------------------------------- /src/Assets/Assets.xcassets/icon-check.imageset/icon-check.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Assets/Assets.xcassets/icon-check.imageset/icon-check.pdf -------------------------------------------------------------------------------- /src/Assets/Assets.xcassets/icon-flip-camera.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Assets/Assets.xcassets/icon-flip-camera.imageset/Contents.json -------------------------------------------------------------------------------- /src/Assets/Assets.xcassets/icon-flip-camera.imageset/flipCamera.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Assets/Assets.xcassets/icon-flip-camera.imageset/flipCamera.pdf -------------------------------------------------------------------------------- /src/Assets/Assets.xcassets/icon-live-off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Assets/Assets.xcassets/icon-live-off.imageset/Contents.json -------------------------------------------------------------------------------- /src/Assets/Assets.xcassets/icon-live-off.imageset/icon-live-off.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Assets/Assets.xcassets/icon-live-off.imageset/icon-live-off.pdf -------------------------------------------------------------------------------- /src/Assets/Assets.xcassets/icon-live-on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Assets/Assets.xcassets/icon-live-on.imageset/Contents.json -------------------------------------------------------------------------------- /src/Assets/Assets.xcassets/icon-live-on.imageset/icon-live-on.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Assets/Assets.xcassets/icon-live-on.imageset/icon-live-on.pdf -------------------------------------------------------------------------------- /src/Defines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Defines.cs -------------------------------------------------------------------------------- /src/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/GlobalUsings.cs -------------------------------------------------------------------------------- /src/ImagePickerAssetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/ImagePickerAssetModel.cs -------------------------------------------------------------------------------- /src/ImagePickerDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/ImagePickerDataSource.cs -------------------------------------------------------------------------------- /src/ImagePickerDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/ImagePickerDelegate.cs -------------------------------------------------------------------------------- /src/ImagePickerLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/ImagePickerLayout.cs -------------------------------------------------------------------------------- /src/Infrastructure/Enums/CameraMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Infrastructure/Enums/CameraMode.cs -------------------------------------------------------------------------------- /src/Infrastructure/Enums/LivePhotoMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Infrastructure/Enums/LivePhotoMode.cs -------------------------------------------------------------------------------- /src/Infrastructure/Enums/SessionSetupResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Infrastructure/Enums/SessionSetupResult.cs -------------------------------------------------------------------------------- /src/Infrastructure/Enums/VideoDisplayMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Infrastructure/Enums/VideoDisplayMode.cs -------------------------------------------------------------------------------- /src/Infrastructure/Extensions/UICollectionViewExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Infrastructure/Extensions/UICollectionViewExtensions.cs -------------------------------------------------------------------------------- /src/Infrastructure/Extensions/UIImageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Infrastructure/Extensions/UIImageExtensions.cs -------------------------------------------------------------------------------- /src/Infrastructure/ImagePickerException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Infrastructure/ImagePickerException.cs -------------------------------------------------------------------------------- /src/Infrastructure/Interfaces/ICameraCollectionViewCellDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Infrastructure/Interfaces/ICameraCollectionViewCellDelegate.cs -------------------------------------------------------------------------------- /src/Infrastructure/Interfaces/ICaptureSessionDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Infrastructure/Interfaces/ICaptureSessionDelegate.cs -------------------------------------------------------------------------------- /src/Infrastructure/Interfaces/ICaptureSessionVideoRecordingDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Infrastructure/Interfaces/ICaptureSessionVideoRecordingDelegate.cs -------------------------------------------------------------------------------- /src/Infrastructure/Interfaces/IImagePickerDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Infrastructure/Interfaces/IImagePickerDelegate.cs -------------------------------------------------------------------------------- /src/Infrastructure/Interfaces/ISessionPhotoCapturingDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Infrastructure/Interfaces/ISessionPhotoCapturingDelegate.cs -------------------------------------------------------------------------------- /src/LayoutModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/LayoutModel.cs -------------------------------------------------------------------------------- /src/Media/AVPreviewView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Media/AVPreviewView.cs -------------------------------------------------------------------------------- /src/Media/Capture/AudioCaptureSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Media/Capture/AudioCaptureSession.cs -------------------------------------------------------------------------------- /src/Media/Capture/CaptureNotificationCenterHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Media/Capture/CaptureNotificationCenterHandler.cs -------------------------------------------------------------------------------- /src/Media/Capture/CaptureSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Media/Capture/CaptureSession.cs -------------------------------------------------------------------------------- /src/Media/Capture/PhotoCaptureSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Media/Capture/PhotoCaptureSession.cs -------------------------------------------------------------------------------- /src/Media/Capture/VideoCaptureSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Media/Capture/VideoCaptureSession.cs -------------------------------------------------------------------------------- /src/Media/Capture/VideoDeviceInputManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Media/Capture/VideoDeviceInputManager.cs -------------------------------------------------------------------------------- /src/Media/CaptureFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Media/CaptureFactory.cs -------------------------------------------------------------------------------- /src/Media/Delegates/CaptureSessionDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Media/Delegates/CaptureSessionDelegate.cs -------------------------------------------------------------------------------- /src/Media/Delegates/CaptureSessionVideoRecordingDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Media/Delegates/CaptureSessionVideoRecordingDelegate.cs -------------------------------------------------------------------------------- /src/Media/Delegates/PhotoCaptureDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Media/Delegates/PhotoCaptureDelegate.cs -------------------------------------------------------------------------------- /src/Media/Delegates/SessionPhotoCapturingDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Media/Delegates/SessionPhotoCapturingDelegate.cs -------------------------------------------------------------------------------- /src/Media/Delegates/VideoCaptureDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Media/Delegates/VideoCaptureDelegate.cs -------------------------------------------------------------------------------- /src/Media/PHAssetManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Media/PHAssetManager.cs -------------------------------------------------------------------------------- /src/Media/SessionPresetConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Media/SessionPresetConfiguration.cs -------------------------------------------------------------------------------- /src/Operations/CollectionViewBatchAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Operations/CollectionViewBatchAnimation.cs -------------------------------------------------------------------------------- /src/Operations/CollectionViewUpdatesCoordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Operations/CollectionViewUpdatesCoordinator.cs -------------------------------------------------------------------------------- /src/Public/Appearance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Public/Appearance.cs -------------------------------------------------------------------------------- /src/Public/CameraCollectionViewCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Public/CameraCollectionViewCell.cs -------------------------------------------------------------------------------- /src/Public/CaptureSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Public/CaptureSettings.cs -------------------------------------------------------------------------------- /src/Public/CellRegistrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Public/CellRegistrator.cs -------------------------------------------------------------------------------- /src/Public/Delegates/CameraCollectionViewCellDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Public/Delegates/CameraCollectionViewCellDelegate.cs -------------------------------------------------------------------------------- /src/Public/Delegates/ImagePickerControllerDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Public/Delegates/ImagePickerControllerDelegate.cs -------------------------------------------------------------------------------- /src/Public/ImagePickerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Public/ImagePickerController.cs -------------------------------------------------------------------------------- /src/Public/ImagePickerControllerDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Public/ImagePickerControllerDataSource.cs -------------------------------------------------------------------------------- /src/Public/ImagePickerControllerPublicApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Public/ImagePickerControllerPublicApi.cs -------------------------------------------------------------------------------- /src/Public/LayoutConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Public/LayoutConfiguration.cs -------------------------------------------------------------------------------- /src/Softeq.ImagePicker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Softeq.ImagePicker.csproj -------------------------------------------------------------------------------- /src/Views/ActionCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Views/ActionCell.cs -------------------------------------------------------------------------------- /src/Views/ActionCell.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Views/ActionCell.designer.cs -------------------------------------------------------------------------------- /src/Views/ActionCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Views/ActionCell.xib -------------------------------------------------------------------------------- /src/Views/AssetCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Views/AssetCell.cs -------------------------------------------------------------------------------- /src/Views/CustomControls/CarvedLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Views/CustomControls/CarvedLabel.cs -------------------------------------------------------------------------------- /src/Views/CustomControls/CheckView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Views/CustomControls/CheckView.cs -------------------------------------------------------------------------------- /src/Views/CustomControls/LayersState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Views/CustomControls/LayersState.cs -------------------------------------------------------------------------------- /src/Views/CustomControls/RecordButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Views/CustomControls/RecordButton.cs -------------------------------------------------------------------------------- /src/Views/CustomControls/RecordDurationLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Views/CustomControls/RecordDurationLabel.cs -------------------------------------------------------------------------------- /src/Views/CustomControls/ShutterButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Views/CustomControls/ShutterButton.cs -------------------------------------------------------------------------------- /src/Views/CustomControls/StationaryButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Views/CustomControls/StationaryButton.cs -------------------------------------------------------------------------------- /src/Views/ImagePickerAssetCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Views/ImagePickerAssetCell.cs -------------------------------------------------------------------------------- /src/Views/ImagePickerView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Views/ImagePickerView.cs -------------------------------------------------------------------------------- /src/Views/ImagePickerView.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Views/ImagePickerView.designer.cs -------------------------------------------------------------------------------- /src/Views/ImagePickerView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Views/ImagePickerView.xib -------------------------------------------------------------------------------- /src/Views/LivePhotoCameraCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Views/LivePhotoCameraCell.cs -------------------------------------------------------------------------------- /src/Views/LivePhotoCameraCell.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Views/LivePhotoCameraCell.designer.cs -------------------------------------------------------------------------------- /src/Views/LivePhotoCameraCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Views/LivePhotoCameraCell.xib -------------------------------------------------------------------------------- /src/Views/VideoAssetCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Views/VideoAssetCell.cs -------------------------------------------------------------------------------- /src/Views/VideoCameraCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Views/VideoCameraCell.cs -------------------------------------------------------------------------------- /src/Views/VideoCameraCell.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Views/VideoCameraCell.designer.cs -------------------------------------------------------------------------------- /src/Views/VideoCameraCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softeq/ImagePicker-xamarin-ios/HEAD/src/Views/VideoCameraCell.xib --------------------------------------------------------------------------------