I have the following XAML:
<Grid> <Grid.RowDefinitions> <RowDefinition Height="auto"/> <RowDefinition Height="auto"/> <RowDefinition Height="auto"/> <RowDefinition Height="auto"/> <RowDefinition Height="auto"/> <RowDefinition Height="auto"/> <RowDefinition Height="*"/> <RowDefinition Height="auto"/> </Grid.RowDefinitions> <!--Home--> <ImageCell ImageSource="Home.png" Text="Home" Grid.Row="2"/> </Grid> Home.png is in the android, ios and UWP projects but I get the above error. What am I doing wrong?
Thanks!