|
1 | | -<?xml version="1.0" encoding="UTF-8"?> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <slideOverKit:SlideMenuView |
3 | 3 | xmlns="http://xamarin.com/schemas/2014/forms" |
4 | 4 | xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" |
5 | | - xmlns:slideOverKit="clr-namespace:SlideOverKit" |
6 | | - xmlns:controls="clr-namespace:eShopOnContainers.Core.Controls;assembly=eShopOnContainers.Core" |
| 5 | + xmlns:slideOverKit="clr-namespace:SlideOverKit" |
7 | 6 | x:Class="eShopOnContainers.Core.Views.FiltersView" |
8 | 7 | MenuOrientations="TopToBottom" |
9 | 8 | BackgroundColor="{StaticResource BackgroundColor}" |
|
13 | 12 | <ResourceDictionary> |
14 | 13 |
|
15 | 14 | <Style x:Key="FilterPickerStyle" |
16 | | - TargetType="{x:Type controls:BindablePicker}"> |
| 15 | + TargetType="{x:Type Picker}"> |
17 | 16 | <Setter Property="HeightRequest" |
18 | 17 | Value="48" /> |
19 | 18 | <Setter Property="BackgroundColor" |
|
70 | 69 | <RowDefinition Height="Auto" /> |
71 | 70 | </Grid.RowDefinitions> |
72 | 71 | <!-- BRAND --> |
73 | | - <controls:BindablePicker |
| 72 | + <Picker |
74 | 73 | Grid.Row="0" |
75 | 74 | Title="BRAND" |
76 | 75 | ItemsSource="{Binding Brands}" |
77 | 76 | SelectedItem="{Binding Brand, Mode=TwoWay}" |
78 | 77 | Style="{StaticResource FilterPickerStyle}"> |
79 | | - <controls:BindablePicker.HeightRequest> |
| 78 | + <Picker.HeightRequest> |
80 | 79 | <OnPlatform |
81 | 80 | x:TypeArguments="x:Double" |
82 | 81 | Android="48" |
83 | 82 | iOS="48" |
84 | 83 | WinPhone="36"/> |
85 | | - </controls:BindablePicker.HeightRequest> |
86 | | - </controls:BindablePicker> |
| 84 | + </Picker.HeightRequest> |
| 85 | + </Picker> |
87 | 86 | <!-- TYPE --> |
88 | | - <controls:BindablePicker |
| 87 | + <Picker |
89 | 88 | Grid.Row="1" |
90 | 89 | Title="TYPE" |
91 | 90 | ItemsSource="{Binding Types}" |
92 | 91 | SelectedItem="{Binding Type, Mode=TwoWay}" |
93 | 92 | Style="{StaticResource FilterPickerStyle}"> |
94 | | - <controls:BindablePicker.HeightRequest> |
| 93 | + <Picker.HeightRequest> |
95 | 94 | <OnPlatform |
96 | 95 | x:TypeArguments="x:Double" |
97 | 96 | Android="48" |
98 | 97 | iOS="48" |
99 | 98 | WinPhone="36"/> |
100 | | - </controls:BindablePicker.HeightRequest> |
101 | | - </controls:BindablePicker> |
| 99 | + </Picker.HeightRequest> |
| 100 | + </Picker> |
102 | 101 | <Button |
103 | 102 | Grid.Row="2" |
104 | 103 | Text="Apply" |
|
0 commit comments