add files

This commit is contained in:
2020-05-04 15:56:32 +08:00
parent 795aa09152
commit 98e118a481
8 changed files with 86 additions and 0 deletions

View File

@ -0,0 +1,22 @@
using Pixiview.iOS.Services;
using Pixiview.Utils;
using Xamarin.Forms;
[assembly: Dependency(typeof(EnvironmentService))]
namespace Pixiview.iOS.Services
{
public class EnvironmentService : IEnvironmentService
{
public EnvironmentParameter GetEnvironment()
{
return new EnvironmentParameter
{
IconLightFontFamily = "FontAwesome5Pro-Light",
IconRegularFontFamily = "FontAwesome5Pro-Regular",
IconSolidFontFamily = "FontAwesome5Pro-Solid",
IconLeft = "\uf104" // for android, it's "\uf060"
};
}
}
}