using System; using System.Threading.Tasks; namespace PalladiumWallet.App.Services; /// /// Seam for platform-specific services (Android/desktop). /// The Android head sets the delegates in OnCreate; desktop leaves them null. /// public static class PlatformServices { /// /// Opens the native QR scanner and returns the raw code text, /// or null if the user cancels or the scanner is unavailable. /// public static Func>? ScanQrAsync { get; set; } }