Changed Xamarin Basket scroll
This commit is contained in:
parent
5f32ca1947
commit
d8a075f760
@ -62,7 +62,6 @@
|
|||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
<RowDefinition Height="*" />
|
<RowDefinition Height="*" />
|
||||||
<RowDefinition Height="Auto" />
|
|
||||||
</Grid.RowDefinitions>
|
</Grid.RowDefinitions>
|
||||||
<!-- HEADER -->
|
<!-- HEADER -->
|
||||||
<Grid
|
<Grid
|
||||||
@ -71,9 +70,11 @@
|
|||||||
Text="SHOPPING CART"
|
Text="SHOPPING CART"
|
||||||
Style="{StaticResource ShoppingCartStyle}"/>
|
Style="{StaticResource ShoppingCartStyle}"/>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
<ScrollView
|
||||||
|
Grid.Row="1">
|
||||||
|
<StackLayout>
|
||||||
<!-- ITEMS -->
|
<!-- ITEMS -->
|
||||||
<ListView
|
<ListView
|
||||||
Grid.Row="1"
|
|
||||||
ItemsSource="{Binding BasketItems}"
|
ItemsSource="{Binding BasketItems}"
|
||||||
behaviors:ItemTappedCommandListViewBehavior.ItemTappedCommand="{Binding AddCommand}"
|
behaviors:ItemTappedCommandListViewBehavior.ItemTappedCommand="{Binding AddCommand}"
|
||||||
HeightRequest="{Binding BasketItems.Count, Converter={StaticResource ItemsToHeightConverter}}"
|
HeightRequest="{Binding BasketItems.Count, Converter={StaticResource ItemsToHeightConverter}}"
|
||||||
@ -91,7 +92,6 @@
|
|||||||
</ListView>
|
</ListView>
|
||||||
<!-- TOTAL -->
|
<!-- TOTAL -->
|
||||||
<StackLayout
|
<StackLayout
|
||||||
Grid.Row="2"
|
|
||||||
Margin="0,0,0,24">
|
Margin="0,0,0,24">
|
||||||
<Label
|
<Label
|
||||||
Grid.Row="0"
|
Grid.Row="0"
|
||||||
@ -104,6 +104,8 @@
|
|||||||
TextColor="{StaticResource GreenColor}"
|
TextColor="{StaticResource GreenColor}"
|
||||||
Style="{StaticResource CartTotalStyle}"/>
|
Style="{StaticResource CartTotalStyle}"/>
|
||||||
</StackLayout>
|
</StackLayout>
|
||||||
|
</StackLayout>
|
||||||
|
</ScrollView>
|
||||||
</Grid>
|
</Grid>
|
||||||
</Grid>
|
</Grid>
|
||||||
<!-- CHECKOUT -->
|
<!-- CHECKOUT -->
|
||||||
|
Loading…
x
Reference in New Issue
Block a user