2019-04-19 16:11:17 +03:00
|
|
|
|
using Bit.Core.Enums;
|
|
|
|
|
using System.Threading.Tasks;
|
2019-04-10 06:33:12 +03:00
|
|
|
|
|
|
|
|
|
namespace Bit.App.Abstractions
|
2019-04-10 06:24:03 +03:00
|
|
|
|
{
|
|
|
|
|
public interface IDeviceActionService
|
|
|
|
|
{
|
2019-04-19 16:11:17 +03:00
|
|
|
|
DeviceType DeviceType { get; }
|
2019-04-10 06:24:03 +03:00
|
|
|
|
void Toast(string text, bool longDuration = false);
|
|
|
|
|
bool LaunchApp(string appName);
|
2019-04-10 06:33:12 +03:00
|
|
|
|
Task ShowLoadingAsync(string text);
|
|
|
|
|
Task HideLoadingAsync();
|
2019-04-29 23:09:27 +03:00
|
|
|
|
bool OpenFile(byte[] fileData, string id, string fileName);
|
|
|
|
|
bool CanOpenFile(string fileName);
|
|
|
|
|
Task ClearCacheAsync();
|
2019-05-09 18:44:27 +03:00
|
|
|
|
Task<string> DisplayPromptAync(string title = null, string description = null, string text = null,
|
|
|
|
|
string okButtonText = null, string cancelButtonText = null);
|
2019-04-10 06:24:03 +03:00
|
|
|
|
}
|
|
|
|
|
}
|