mirror of
https://github.com/bitwarden/mobile
synced 2025-12-18 17:23:18 +00:00
show/hide loading are async now
This commit is contained in:
@@ -48,9 +48,9 @@ namespace Bit.iOS.Core.Services
|
||||
return Task.FromResult<string>(null);
|
||||
}
|
||||
|
||||
public void HideLoading()
|
||||
public Task HideLoadingAsync()
|
||||
{
|
||||
// do nothing
|
||||
return Task.FromResult(0);
|
||||
}
|
||||
|
||||
public Task LaunchAppAsync(string appName, Page page)
|
||||
@@ -83,9 +83,9 @@ namespace Bit.iOS.Core.Services
|
||||
return Task.FromResult(0);
|
||||
}
|
||||
|
||||
public void ShowLoading(string text)
|
||||
public Task ShowLoadingAsync(string text)
|
||||
{
|
||||
// do nothing
|
||||
return Task.FromResult(0);
|
||||
}
|
||||
|
||||
public void Toast(string text, bool longDuration = false)
|
||||
|
||||
Reference in New Issue
Block a user