Open Korayem opened 8 years ago
I am trying Xamarin Forms sample project that showcases MasterDetailPage implementation found here
Rendering this file MasterPage.xaml ...
MasterPage.xaml
<?xml version="1.0" encoding="UTF-8"?> <ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="MasterDetailPageNavigation.MasterPage" Padding="0,40,0,0" Icon="hamburger.png" Title="Personal Organiser"> <ContentPage.Content> <StackLayout VerticalOptions="FillAndExpand"> <ListView x:Name="listView" VerticalOptions="FillAndExpand" SeparatorVisibility="None"> <ListView.ItemTemplate> <DataTemplate> <ImageCell Text="{Binding Title}" ImageSource="{Binding IconSource}" /> </DataTemplate> </ListView.ItemTemplate> </ListView> </StackLayout> </ContentPage.Content> </ContentPage>
... throws this error on Gorilla Player ImageCell must have a direct decendant with this Warning: Limitation: Image properties for ImageCell is not supported
ImageCell must have a direct decendant
Limitation: Image properties for ImageCell is not supported
I tried swapping ImageCell for TextCell and got same results
ImageCell
TextCell
Hi @Korayem, thanks for this. We will review it soon.
Awesome! keep me posted because I can't use Gorilla Player at all with this limitation
I am trying Xamarin Forms sample project that showcases MasterDetailPage implementation found here
Rendering this file
MasterPage.xaml
...... throws this error on Gorilla Player
ImageCell must have a direct decendant
with this Warning:Limitation: Image properties for ImageCell is not supported
I tried swapping
ImageCell
forTextCell
and got same results