feat: redesign IconButtonDemo.

This commit is contained in:
Zhang Dian
2025-01-24 21:46:45 +08:00
committed by Dong Bin
parent 663bfe70ce
commit 841e0748f2
2 changed files with 139 additions and 106 deletions

View File

@@ -1,7 +1,10 @@
using CommunityToolkit.Mvvm.ComponentModel;
using Ursa.Common;
namespace Ursa.Demo.ViewModels;
public class IconButtonDemoViewModel : ObservableObject
public partial class IconButtonDemoViewModel : ObservableObject
{
[ObservableProperty] private bool _isLoading;
[ObservableProperty] private Position _selectedPosition;
}