mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
* [SG-174] Add new login request services to Api * [SG-174] Fix typo * [SG-174] Enable login with device button. * [SG-174] Add new login request page and viewmodel * [SG-174] Add new text resources * [SG-174] Add new RSA Decrypt method with string param * [SG-174] Change create login request method * [SG-174] Add new method to auth service to login passwordless * [SG-174] Refactor login helper method to work with passwordless * [SG-174] Fix service registration * [SG-174] Update token request to support passwordless * [SG-174] Update Api service with passwordless methods * [SG-174] Fix App csproj references * [SG-174] Remove unnecessary argument * [SG-174] dotnet format * [SG-174] Fixed iOS Extensions * [SG-174] Change Command to ICommand * [SG-174] Change Gesture Recognizer to Command * [SG-174] Fix close action * [SG-174] Code format * [SG-174] Fix android frame shadow bug * [SG-174] PR fixes
43 lines
1.8 KiB
XML
43 lines
1.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<Frame xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="Bit.App.Controls.IconLabelButton"
|
|
xmlns:controls="clr-namespace:Bit.App.Controls"
|
|
x:Name="_iconLabelButton"
|
|
HeightRequest="45"
|
|
Padding="1"
|
|
StyleClass="btn-icon-secondary"
|
|
BackgroundColor="{Binding IconLabelBorderColor, Source={x:Reference _iconLabelButton}}"
|
|
BorderColor="Transparent"
|
|
HasShadow="False">
|
|
<Frame.GestureRecognizers>
|
|
<TapGestureRecognizer Command="{Binding ButtonCommand, Source={x:Reference _iconLabelButton}}" />
|
|
</Frame.GestureRecognizers>
|
|
<Frame
|
|
Margin="0"
|
|
Padding="0"
|
|
CornerRadius="{Binding CornerRadius, Source={x:Reference _iconLabelButton}}"
|
|
BackgroundColor="{Binding IconLabelBackgroundColor, Source={x:Reference _iconLabelButton}}"
|
|
BorderColor="Transparent"
|
|
IsClippedToBounds="True"
|
|
HasShadow="False">
|
|
<StackLayout
|
|
Orientation="Horizontal"
|
|
HorizontalOptions="Center">
|
|
<controls:IconLabel
|
|
VerticalOptions="Center"
|
|
HorizontalTextAlignment="Center"
|
|
FontSize="Large"
|
|
TextColor="{Binding IconLabelColor, Source={x:Reference _iconLabelButton}}"
|
|
Text="{Binding Icon, Source={x:Reference _iconLabelButton}}">
|
|
</controls:IconLabel>
|
|
<Label
|
|
VerticalOptions="Center"
|
|
HorizontalTextAlignment="Center"
|
|
TextColor="{Binding IconLabelColor, Source={x:Reference _iconLabelButton}}"
|
|
FontSize="Medium"
|
|
Text="{Binding Label, Source={x:Reference _iconLabelButton}}"/>
|
|
</StackLayout>
|
|
</Frame>
|
|
</Frame>
|