16 lines
337 B
C#
16 lines
337 B
C#
using Template.Shared.Core.Interface;
|
|
|
|
namespace Template.Maui.Core.Services;
|
|
|
|
public class FormFactor : IFormFactor
|
|
{
|
|
public string GetFormFactor()
|
|
{
|
|
return DeviceInfo.Idiom.ToString();
|
|
}
|
|
public string GetPlatform()
|
|
{
|
|
return DeviceInfo.Platform.ToString() + " - " + DeviceInfo.VersionString;
|
|
}
|
|
}
|