Add project files.
This commit is contained in:
@ -0,0 +1,9 @@
|
||||
namespace GreadyPoang.Core;
|
||||
|
||||
public interface INavigationService
|
||||
{
|
||||
Task NavigateToAsync(string route);
|
||||
Task NavigateToPageAsync(Page page);
|
||||
|
||||
}
|
||||
|
||||
6
Gready_Poang.ViewModelLayer/Interfaces/IPageFactory.cs
Normal file
6
Gready_Poang.ViewModelLayer/Interfaces/IPageFactory.cs
Normal file
@ -0,0 +1,6 @@
|
||||
namespace GreadyPoang.Core;
|
||||
|
||||
public interface IPageFactory
|
||||
{
|
||||
Page CreateRoundPage();
|
||||
}
|
||||
9
Gready_Poang.ViewModelLayer/Interfaces/ISplashService.cs
Normal file
9
Gready_Poang.ViewModelLayer/Interfaces/ISplashService.cs
Normal file
@ -0,0 +1,9 @@
|
||||
|
||||
namespace GreadyPoang.Core;
|
||||
|
||||
public interface ISplashService
|
||||
{
|
||||
Task ShowSplash(string text = "Välkommen!", int durationMs = 3000);
|
||||
Task HideAsync();
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user