1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-14 15:23:35 +00:00

more device actions

This commit is contained in:
Kyle Spearrin
2019-04-09 23:33:12 -04:00
parent 9e51c46522
commit 0d417b3eee
6 changed files with 279 additions and 5 deletions

View File

@@ -1,8 +1,12 @@
namespace Bit.App.Abstractions
using System.Threading.Tasks;
namespace Bit.App.Abstractions
{
public interface IDeviceActionService
{
void Toast(string text, bool longDuration = false);
bool LaunchApp(string appName);
Task ShowLoadingAsync(string text);
Task HideLoadingAsync();
}
}