mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
12 lines
350 B
C#
12 lines
350 B
C#
using System;
|
|
using CommunityToolkit.Mvvm.DependencyInjection;
|
|
|
|
namespace Flow.Launcher.Core.Resource
|
|
{
|
|
[Obsolete("ThemeManager.Instance is obsolete. Use Ioc.Default.GetRequiredService<Theme>() instead.")]
|
|
public class ThemeManager
|
|
{
|
|
public static Theme Instance
|
|
=> Ioc.Default.GetRequiredService<Theme>();
|
|
}
|
|
}
|