You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Mobile/eShopOnContainers/eShopOnContainers.Core/Views/Templates/BasketItemTemplate.xaml
+16-1Lines changed: 16 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -83,6 +83,7 @@
83
83
</Grid.ColumnDefinitions>
84
84
<Grid.RowDefinitions>
85
85
<RowDefinitionHeight="*" />
86
+
<RowDefinitionHeight="Auto" />
86
87
<RowDefinitionHeight="1" />
87
88
</Grid.RowDefinitions>
88
89
<!-- IMAGE -->
@@ -131,10 +132,24 @@
131
132
Text="{Binding Total, StringFormat='${0:N}'}"
132
133
Style="{StaticResource OrderTotalStyle}"/>
133
134
</Grid>
134
-
<Grid
135
+
<Grid
135
136
Grid.Column="0"
136
137
Grid.ColumnSpan="2"
137
138
Grid.Row="1"
139
+
IsVisible="{Binding HasNewPrice}"
140
+
BackgroundColor="#F0AD4E">
141
+
<Label
142
+
HorizontalOptions="Fill"
143
+
VerticalOptions="Fill"
144
+
HorizontalTextAlignment="Center"
145
+
VerticalTextAlignment="Center"
146
+
HeightRequest="60"
147
+
Text="{Binding OldUnitPrice, StringFormat='Note that the price of this article changed in our Catalog. The old price when you originally added it to the basket was ${0:N2}'}" />
0 commit comments