新增骨架屏控件

This commit is contained in:
Coolkeke
2023-12-27 00:30:42 +08:00
parent 1d6f3b10ce
commit 30a303f524
17 changed files with 209 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
using Avalonia.Controls;
using Ursa.Demo.ViewModels;
namespace Ursa.Demo.Pages
{
public partial class SkeletonDemo : UserControl
{
public SkeletonDemo()
{
InitializeComponent();
DataContext = new SkeletonDemoViewModel();
}
}
}