1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-25 10:26:02 +02:00

bold "no way"

This commit is contained in:
Kyle Spearrin 2016-07-04 03:01:43 -04:00
parent f74273999c
commit 02d0e57197

View File

@ -61,11 +61,15 @@ namespace Bit.App.Pages
var passwordLabel = new Label
{
Text = "The master password is the password you use to access your vault. It is very important that you do not forget your master password. There is no way to recover the password in the event that you forget it.",
LineBreakMode = LineBreakMode.WordWrap,
FontSize = Device.GetNamedSize(NamedSize.Small, typeof(Label)),
Style = (Style)Application.Current.Resources["text-muted"]
};
var fs = new FormattedString();
fs.Spans.Add(new Span { Text = "The master password is the password you use to access your vault. It is very important that you do not forget your master password. There is" });
fs.Spans.Add(new Span { Text = " no way", FontAttributes = FontAttributes.Bold });
fs.Spans.Add(new Span { Text = " to recover the password in the event that you forget it." });
passwordLabel.FormattedText = fs;
var table2 = new FormTableView
{