mirror of
https://github.com/bitwarden/mobile
synced 2025-12-30 15:13:24 +00:00
* EC-259 Added Account switching on share extension on iOS, also improved performance for this and exception handling * EC-259 code formatting * EC-259 Added account switching to Share extension Send view * EC-259 Fixed navigation on share extension when a forms page is already presented * EC-259 Fix send text UI update when going from the iOS extension * EC-259 Improved DateTimeViewModel with helper property to easily setup date and time at the same time and applied on usage
21 lines
721 B
XML
21 lines
721 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<Grid
|
|
xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:controls="clr-namespace:Bit.App.Controls"
|
|
x:Class="Bit.App.Controls.DateTimePicker"
|
|
ColumnDefinitions="*,*">
|
|
<controls:ExtendedDatePicker
|
|
x:Name="_datePicker"
|
|
Grid.Column="0"
|
|
NullableDate="{Binding Date, Mode=TwoWay}"
|
|
Format="d"
|
|
AutomationProperties.IsInAccessibleTree="True" />
|
|
<controls:ExtendedTimePicker
|
|
x:Name="_timePicker"
|
|
Grid.Column="1"
|
|
NullableTime="{Binding Time, Mode=TwoWay}"
|
|
Format="t"
|
|
AutomationProperties.IsInAccessibleTree="True" />
|
|
</Grid>
|