Scan ean code on iOS app

This commit is contained in:
Michał Zieliński
2025-07-17 19:17:27 +02:00
parent 2a42f16daf
commit b673fd2da3
8 changed files with 255 additions and 23 deletions

View File

@@ -0,0 +1,9 @@
namespace Bimix.UI.Shared.Interfaces;
public interface IScannerService
{
bool IsAvailable { get; }
Task<bool> RequestCameraPermissionsAsync();
Task<string?> ScanBarcodeAsync();
}