mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-22 11:35:21 +01:00
noop device action service
This commit is contained in:
parent
4ebd249356
commit
50fa74adfe
@ -2,6 +2,7 @@
|
||||
using Bit.App.Abstractions;
|
||||
using System.Threading.Tasks;
|
||||
using Bit.App.Models.Page;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace Bit.iOS.Core.Services
|
||||
{
|
||||
@ -42,11 +43,16 @@ namespace Bit.iOS.Core.Services
|
||||
// do nothing
|
||||
}
|
||||
|
||||
public void LaunchApp(string appName)
|
||||
public void HideLoading()
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
||||
public Task LaunchAppAsync(string appName, Page page)
|
||||
{
|
||||
return Task.FromResult(0);
|
||||
}
|
||||
|
||||
public void OpenAccessibilitySettings()
|
||||
{
|
||||
// do nothing
|
||||
@ -72,6 +78,11 @@ namespace Bit.iOS.Core.Services
|
||||
return Task.FromResult(0);
|
||||
}
|
||||
|
||||
public void ShowLoading(string text)
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
||||
public void Toast(string text, bool longDuration = false)
|
||||
{
|
||||
// do nothing
|
||||
|
Loading…
Reference in New Issue
Block a user