feat: add fix to drawer.

This commit is contained in:
rabbitism
2024-08-25 15:47:12 +08:00
parent 5429b86bda
commit 1553a936b5
4 changed files with 37 additions and 49 deletions

View File

@@ -7,7 +7,7 @@ public class DrawerOptions
internal static DrawerOptions Default => new ();
public Position Position { get; set; } = Position.Right;
public bool CanLightDismiss { get; set; } = true;
public bool IsCloseButtonVisible { get; set; } = true;
public bool? IsCloseButtonVisible { get; set; } = true;
public double? MinWidth { get; set; } = null;
public double? MinHeight { get; set; } = null;
public double? MaxWidth { get; set; } = null;