新增 FlowScope Git 包雏形
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FlowScope.UI
|
||||
{
|
||||
public interface IUIScreenNavigator
|
||||
{
|
||||
Task<TPanel> PushAsync<TPanel, TViewModel>(
|
||||
TViewModel viewModel,
|
||||
CancellationToken cancellationToken)
|
||||
where TPanel : UIPanelBase<TViewModel>;
|
||||
|
||||
bool CanGoBack { get; }
|
||||
|
||||
void GoBack();
|
||||
|
||||
void Clear();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user