add account

This commit is contained in:
2022-02-26 12:36:32 +08:00
parent fae6d2ce50
commit 4d69bea70b
12 changed files with 192 additions and 23 deletions

View File

@ -19,6 +19,24 @@ namespace Billing.UI
return obj;
}
public static View HorizontalOptions(this View view, LayoutOptions options)
{
if (view != null)
{
view.HorizontalOptions = options;
}
return view;
}
public static View VerticalOptions(this View view, LayoutOptions options)
{
if (view != null)
{
view.VerticalOptions = options;
}
return view;
}
public static View DynamicResource(this View view, BindableProperty property, string key)
{
view.SetDynamicResource(property, key);