| 12345678910111213141516171819202122 |
- using Avalonia.Controls;
- using InABox.Avalonia.Platform;
- namespace InABox.Avalonia
- {
- public class MobileDocumentVideoLibrarySource : MobileVideoSource<MobileDocumentVideoLibrarySource, MobileDocumentVideoLibraryOptions>
- {
-
- public MobileDocumentVideoLibrarySource(MobileDocumentVideoLibraryOptions options) : base(options)
- {
- }
-
- protected override async Task<bool> IsEnabled()
- => await PlatformTools.Permissions.IsPermitted(Permission.VideoLibrary);
- protected override async Task<ImageFile?> Capture(TopLevel window)
- => await PlatformTools.ImageTools.PickVideoAsync(window);
- }
- }
|