diff --git a/src/App/Pages/LoginTwoFactorPage.cs b/src/App/Pages/LoginTwoFactorPage.cs index 1a93e4a9a..211dec633 100644 --- a/src/App/Pages/LoginTwoFactorPage.cs +++ b/src/App/Pages/LoginTwoFactorPage.cs @@ -264,6 +264,21 @@ namespace Bit.App.Pages Spacing = 0 }; + if(Device.RuntimePlatform == Device.iOS) + { + var tryAgainButton = new ExtendedButton + { + Text = AppResources.UseAnotherTwoStepMethod, + Style = (Style)Application.Current.Resources["btn-primaryAccent"], + Margin = new Thickness(15, 0, 15, 25), + Command = new Command(() => ListenYubiKey(true, true)), + Uppercase = false, + BackgroundColor = Color.Transparent, + VerticalOptions = LayoutOptions.Start + }; + layout.Children.Insert(3, tryAgainButton); + } + table.WrappingStackLayout = () => layout; scrollView.Content = layout; ToolbarItems.Add(continueToolbarItem);