Files
Deliverly/ConSegna.Maui/Core/Services/NetworkService.cs

11 lines
258 B
C#

using ConSegna.Shared.Core.Interfaces;
namespace ConSegna.Maui.Core.Services;
public class NetworkService : INetworkService
{
public bool IsNetworkAvailable()
{
return Connectivity.Current.NetworkAccess == NetworkAccess.Internet;
}
}