Files
TaskHybrid/salesbook.Maui/Core/Services/FormFactor.cs
2025-06-26 10:08:21 +02:00

16 lines
339 B
C#

using salesbook.Shared.Core.Interface;
namespace salesbook.Maui.Core.Services;
public class FormFactor : IFormFactor
{
public string GetFormFactor()
{
return DeviceInfo.Idiom.ToString();
}
public string GetPlatform()
{
return DeviceInfo.Platform.ToString() + " - " + DeviceInfo.VersionString;
}
}