add account
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user