mirror of
https://github.com/bitwarden/mobile
synced 2025-12-15 07:43:37 +00:00
Respect options on gneerate password. Allow override parameters to be passed into password generation service. Respect context password options. Copy password.
This commit is contained in:
@@ -20,6 +20,13 @@ namespace Bit.iOS.Core.Utilities
|
||||
return alert;
|
||||
}
|
||||
|
||||
public static UIAlertController CreateMessageAlert(string message)
|
||||
{
|
||||
var alert = UIAlertController.Create(null, message, UIAlertControllerStyle.Alert);
|
||||
alert.View.TintColor = UIColor.Black;
|
||||
return alert;
|
||||
}
|
||||
|
||||
public static UIAlertController CreateAlert(string title, string message, string accept)
|
||||
{
|
||||
var alert = UIAlertController.Create(title, message, UIAlertControllerStyle.Alert);
|
||||
|
||||
Reference in New Issue
Block a user