maui-dependency-injection

Installation
SKILL.md

Dependency Injection in .NET MAUI

Lifetime Decision Framework

Question Answer → Lifetime
Does it hold shared state or is expensive to create? AddSingleton
Is it stateless, lightweight, or per-request? AddTransient
Do you manage IServiceScope yourself? AddScoped

⚠️ Avoid AddScoped in MAUI — there is no built-in scope per page. Using it without manually creating IServiceScope gives you singleton behaviour silently, which is confusing and error-prone.

Singleton traps

// ❌ ViewModel registered as Singleton — stale data across navigations
builder.Services.AddSingleton<DetailViewModel>();
Related skills
Installs
33
GitHub Stars
135
First Seen
Feb 17, 2026