/BurgerUIApp.xaml Secret
Last active
May 23, 2020 23:59
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 2.4 Menu options--> | |
<CollectionView ItemsSource="{Binding burgers}" | |
VerticalOptions="Start" | |
VerticalScrollBarVisibility="Never" | |
Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="2"> | |
<CollectionView.ItemTemplate> | |
<DataTemplate> | |
<StackLayout> | |
<Frame HasShadow="False" BackgroundColor="#fef6f2" HeightRequest="90" CornerRadius="20" Margin="0,10"> | |
<Grid> | |
<Grid.ColumnDefinitions> | |
<ColumnDefinition Width="Auto"/> | |
<ColumnDefinition Width="*"/> | |
<ColumnDefinition Width="Auto"/> | |
</Grid.ColumnDefinitions> | |
<Grid.RowDefinitions> | |
<RowDefinition Height="*"/> | |
<RowDefinition Height="*"/> | |
<RowDefinition Height="*"/> | |
</Grid.RowDefinitions> | |
<PanCake:PancakeView Grid.Column="0" Grid.Row="0" Grid.RowSpan="3" CornerRadius="12" Margin="0,0,10,0"> | |
<Image Source="MainBurger" HeightRequest="100" WidthRequest="95" Aspect="AspectFill"/> | |
</PanCake:PancakeView> | |
<Label Grid.Row="0" Grid.Column="1" Grid.ColumnSpan="2" Text="{Binding Name}" FontSize="15" FontAttributes="Bold"/> | |
<Label Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="2" Text="{Binding Description}" FontSize="15" TextColor="#a4a7b6"/> | |
<Image Grid.Row="2" Grid.Column="1" Source="Star" HorizontalOptions="Start" WidthRequest="20"/> | |
<Label Grid.Row="2" Grid.Column="1" Margin="30,0,0,0" FontSize="15" VerticalOptions="Center"> | |
<Label.FormattedText> | |
<FormattedString> | |
<Span Text="{Binding Rating}" FontAttributes="Bold" /> | |
<Span Text="{Binding RatingDetail}" TextColor="#a4a7b6" /> | |
</FormattedString> | |
</Label.FormattedText> | |
</Label> | |
<Image Grid.Row="0" Grid.Column="2" Source="{Binding HomeSelected}" HeightRequest="15" /> </Grid> | |
</Frame> | |
</StackLayout> | |
</DataTemplate> | |
</CollectionView.ItemTemplate> | |
</CollectionView> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment