first test-flight version
This commit is contained in:
@ -11,6 +11,8 @@ namespace Billing.UI
|
||||
{
|
||||
public static partial class Definition
|
||||
{
|
||||
public static string PrimaryColorKey = "PrimaryColor";
|
||||
public static partial (string main, long build) GetVersion();
|
||||
public static partial string GetCascadiaRegularFontFamily();
|
||||
public static partial string GetCascadiaBoldFontFamily();
|
||||
public static partial string GetRobotoCondensedRegularFontFamily();
|
||||
@ -84,6 +86,13 @@ namespace Billing.UI
|
||||
{
|
||||
await page.DisplayAlert(title ?? page.Title, message, Resource.Ok);
|
||||
}
|
||||
|
||||
public static async Task<bool> ShowConfirm(this Page page, string message)
|
||||
{
|
||||
var yes = Resource.Yes;
|
||||
var result = await page.DisplayActionSheet(message, Resource.No, yes);
|
||||
return result == yes;
|
||||
}
|
||||
}
|
||||
|
||||
public static class ModelExtensionHelper
|
||||
|
Reference in New Issue
Block a user