UXDivers / Gorilla-Player-Support

This is the public Gorilla Player support website
http://gorillaplayer.com
115 stars 17 forks source link

Error: ImageCell must have a direct decendant #21

Open Korayem opened 8 years ago

Korayem commented 8 years ago

I am trying Xamarin Forms sample project that showcases MasterDetailPage implementation found here

Rendering this file 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

I tried swapping ImageCell for TextCell and got same results

jpbrocca commented 8 years ago

Hi @Korayem, thanks for this. We will review it soon.

Korayem commented 8 years ago

Awesome! keep me posted because I can't use Gorilla Player at all with this limitation