using System;
using System.Threading.Tasks;
namespace PalladiumWallet.App.Services;
///
/// Seam per servizi specifici della piattaforma (Android/desktop).
/// Il head Android imposta i delegate in OnCreate; desktop li lascia null.
///
public static class PlatformServices
{
///
/// Apre lo scanner QR nativo e restituisce il testo raw del codice,
/// oppure null se l'utente annulla o lo scanner non รจ disponibile.
///
public static Func>? ScanQrAsync { get; set; }
}