move service to shared project.
This commit is contained in:
@@ -7,13 +7,8 @@ namespace Pixiview.UI
|
||||
public static class StyleDefinition
|
||||
{
|
||||
public const double FontSizeTitle = 18.0;
|
||||
public const double FontSizeTitleIcon = 24.0;
|
||||
|
||||
public static readonly Thickness ScreenBottomPadding;
|
||||
public static readonly Thickness HorizonLeft10 = new Thickness(10, 0, 0, 0);
|
||||
public static readonly Thickness HorizonRight10 = new Thickness(0, 0, 10, 0);
|
||||
public static readonly Thickness LeftBottom10 = new Thickness(10, 0, 0, 10);
|
||||
public static readonly GridLength TitleIconWidth = 40;
|
||||
public static readonly Color ColorLightShadow = Color.FromRgba(0, 0, 0, 0x20);
|
||||
public static readonly Color ColorDeepShadow = Color.FromRgba(0, 0, 0, 0x50);
|
||||
public static readonly Color ColorRedBackground = Color.FromRgb(0xfd, 0x43, 0x63);
|
||||
@@ -22,6 +17,16 @@ namespace Pixiview.UI
|
||||
public static readonly double FontSizeMicro = Device.GetNamedSize(NamedSize.Micro, typeof(Label));
|
||||
public static readonly double FontSizeSmall = Device.GetNamedSize(NamedSize.Small, typeof(Label));
|
||||
|
||||
#if __IOS__
|
||||
public const string IconLightFontFamily = "FontAwesome5Pro-Light";
|
||||
public const string IconRegularFontFamily = "FontAwesome5Pro-Regular";
|
||||
public const string IconSolidFontFamily = "FontAwesome5Pro-Solid";
|
||||
|
||||
public const string IconLeft = "\uf104";
|
||||
#else
|
||||
// TODO
|
||||
#endif
|
||||
|
||||
public const string IconUser = "\uf007";
|
||||
public const string IconSparkles = "\uf890";
|
||||
public const string IconOrder = "\uf88f";
|
||||
@@ -29,7 +34,6 @@ namespace Pixiview.UI
|
||||
public const string IconRefresh = "\uf2f1";
|
||||
public const string IconLove = "\uf004";
|
||||
public const string IconOption = "\uf013";
|
||||
public const string IconDownload = "\uf019";
|
||||
public const string IconFavorite = "\uf02e";
|
||||
public const string IconShare = "\uf35d";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user