* Implemented copying auth URL for Gmail authentication. * Update Button icon and add row spacing in Flyout grid The icon used in the Button.Content has been updated to a new design and is now wrapped inside a Viewbox with a width of 20 to ensure proper scaling. Additionally, the Grid inside the Flyout now includes RowSpacing="12" to improve visual separation between rows.
11 lines
338 B
C#
11 lines
338 B
C#
using Wino.Messaging.UI;
|
|
|
|
namespace Wino.Messaging.Server
|
|
{
|
|
/// <summary>
|
|
/// When authenticators are proposed to copy the auth URL on the UI.
|
|
/// </summary>
|
|
/// <param name="AuthURL">URL to be copied to clipboard.</param>
|
|
public record CopyAuthURLRequested(string AuthURL) : UIMessageBase<CopyAuthURLRequested>;
|
|
}
|