Create a .NET MAUI library for Buy Me a Coffee integration with branded button, QR code, and widget controls. Includes 8 theme presets (yellow, black, white, blue, violet, orange, red, green), customizable styling, and SkiaSharp-based rendering. Supports opening BMC pages in browser and generating QR codes for donations.
12 lines
438 B
C#
12 lines
438 B
C#
namespace BuyMeCofee.Maui.Constants;
|
|
|
|
public static class BmcConstants
|
|
{
|
|
public const string BaseUrl = "https://buymeacoffee.com/";
|
|
public const string DefaultButtonText = "Buy me a coffee";
|
|
public const string DefaultSupportButtonText = "Support";
|
|
public const double ButtonCornerRadius = 8.0;
|
|
public const double WidgetCornerRadius = 16.0;
|
|
public static readonly int[] DefaultSuggestedAmounts = [25, 50, 100];
|
|
}
|