1 implementation of ITicker
Microsoft.Maui (1)
Animations\Ticker.cs (1)
7 public class Ticker : ITicker
6 references to ITicker
Microsoft.Maui (6)
Animations\AnimationManager.cs (3)
16 /// <param name="ticker">An instance of <see cref="ITicker"/> that will be used to time the animations.</param> 17 public AnimationManager(ITicker ticker) 26 public ITicker Ticker { get; }
Animations\IAnimationManager.cs (1)
11 ITicker Ticker { get; }
Hosting\Animations\AppHostBuilderExtensions.cs (2)
19 builder.Services.TryAddScoped<ITicker>(svcs => new PlatformTicker()); 21 builder.Services.TryAddScoped<IAnimationManager>(svcs => new AnimationManager(svcs.GetRequiredService<ITicker>()));