What is the accepted way of displaying two variably sized lists on a single page in Xamarin Forms?











up vote
0
down vote

favorite












I want to maintain a completely declarative UI with Xamarin data binding.



I followed this thread which is a nightmare that doesn't end well.
https://forums.xamarin.com/discussion/19874/listview-inside-stacklayout-a-height-problem/p2



They essentially settled on this, attempting to dynamically size the listviews based on the content (looks brittle): Xamarin.Forms ListView size to content?



Using this code, my listviews yield a bunch of blank space after the actual content. Totally out of control. Yes, I tried HasUnevenRows="true"



    <ScrollView>
<Grid >
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>

<Grid Grid.Row="0">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<Label Grid.Row ="0" Grid.Column="0" Text="Category: " />
<Label Grid.Row ="1" Grid.Column="0" Text="Meal Time: " />
<Label Grid.Row ="0" Grid.Column="1" Text="{Binding Recipe.Category}" />
<Label Grid.Row ="1" Grid.Column="1" Text="{Binding Recipe.MealTime}" />

</Grid>
<ListView VerticalOptions="Start" Grid.Row="1" HasUnevenRows="False" x:Name="IngredientsListView"
ItemsSource="{Binding Recipe.Ingredients}"
RefreshCommand="{Binding LoadRecipesCommand}"
>
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<Grid Padding="0">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<Label Grid.Row="0" Grid.Column="0" Text="{Binding }"/>
<Label Grid.Row ="0" Grid.Column="1" FontAttributes="Bold" Text="{Binding Count}" />
<Label Grid.Row ="0" Grid.Column="2" FontAttributes="Bold" Text="{Binding Measure}" />
<Label Grid.Row ="0" Grid.Column="3" FontAttributes="Bold" Text="{Binding Name}" />
<Label Grid.Row ="1" Grid.Column="2" Grid.ColumnSpan="2" FontAttributes="Italic" FontSize="Micro" Text="{Binding Note}" />
</Grid>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>

<ListView VerticalOptions="Start" Grid.Row="2" HasUnevenRows="False" x:Name="InstructionsListView"
ItemsSource="{Binding Recipe.Instructions}"

>
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<Label Text="{Binding .}"/>
</ViewCell>
</DataTemplate>

</ListView.ItemTemplate>
</ListView>
</Grid>
</ScrollView>









share|improve this question


























    up vote
    0
    down vote

    favorite












    I want to maintain a completely declarative UI with Xamarin data binding.



    I followed this thread which is a nightmare that doesn't end well.
    https://forums.xamarin.com/discussion/19874/listview-inside-stacklayout-a-height-problem/p2



    They essentially settled on this, attempting to dynamically size the listviews based on the content (looks brittle): Xamarin.Forms ListView size to content?



    Using this code, my listviews yield a bunch of blank space after the actual content. Totally out of control. Yes, I tried HasUnevenRows="true"



        <ScrollView>
    <Grid >
    <Grid.RowDefinitions>
    <RowDefinition Height="Auto" />
    <RowDefinition Height="Auto" />
    <RowDefinition Height="Auto" />
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="Auto" />
    </Grid.ColumnDefinitions>

    <Grid Grid.Row="0">
    <Grid.RowDefinitions>
    <RowDefinition Height="Auto" />
    <RowDefinition Height="Auto" />
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="Auto" />
    <ColumnDefinition Width="Auto" />
    </Grid.ColumnDefinitions>
    <Label Grid.Row ="0" Grid.Column="0" Text="Category: " />
    <Label Grid.Row ="1" Grid.Column="0" Text="Meal Time: " />
    <Label Grid.Row ="0" Grid.Column="1" Text="{Binding Recipe.Category}" />
    <Label Grid.Row ="1" Grid.Column="1" Text="{Binding Recipe.MealTime}" />

    </Grid>
    <ListView VerticalOptions="Start" Grid.Row="1" HasUnevenRows="False" x:Name="IngredientsListView"
    ItemsSource="{Binding Recipe.Ingredients}"
    RefreshCommand="{Binding LoadRecipesCommand}"
    >
    <ListView.ItemTemplate>
    <DataTemplate>
    <ViewCell>
    <Grid Padding="0">
    <Grid.RowDefinitions>
    <RowDefinition Height="Auto" />
    <RowDefinition Height="Auto" />
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="Auto" />
    <ColumnDefinition Width="Auto" />
    <ColumnDefinition Width="Auto" />
    <ColumnDefinition Width="Auto" />
    </Grid.ColumnDefinitions>
    <Label Grid.Row="0" Grid.Column="0" Text="{Binding }"/>
    <Label Grid.Row ="0" Grid.Column="1" FontAttributes="Bold" Text="{Binding Count}" />
    <Label Grid.Row ="0" Grid.Column="2" FontAttributes="Bold" Text="{Binding Measure}" />
    <Label Grid.Row ="0" Grid.Column="3" FontAttributes="Bold" Text="{Binding Name}" />
    <Label Grid.Row ="1" Grid.Column="2" Grid.ColumnSpan="2" FontAttributes="Italic" FontSize="Micro" Text="{Binding Note}" />
    </Grid>
    </ViewCell>
    </DataTemplate>
    </ListView.ItemTemplate>
    </ListView>

    <ListView VerticalOptions="Start" Grid.Row="2" HasUnevenRows="False" x:Name="InstructionsListView"
    ItemsSource="{Binding Recipe.Instructions}"

    >
    <ListView.ItemTemplate>
    <DataTemplate>
    <ViewCell>
    <Label Text="{Binding .}"/>
    </ViewCell>
    </DataTemplate>

    </ListView.ItemTemplate>
    </ListView>
    </Grid>
    </ScrollView>









    share|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I want to maintain a completely declarative UI with Xamarin data binding.



      I followed this thread which is a nightmare that doesn't end well.
      https://forums.xamarin.com/discussion/19874/listview-inside-stacklayout-a-height-problem/p2



      They essentially settled on this, attempting to dynamically size the listviews based on the content (looks brittle): Xamarin.Forms ListView size to content?



      Using this code, my listviews yield a bunch of blank space after the actual content. Totally out of control. Yes, I tried HasUnevenRows="true"



          <ScrollView>
      <Grid >
      <Grid.RowDefinitions>
      <RowDefinition Height="Auto" />
      <RowDefinition Height="Auto" />
      <RowDefinition Height="Auto" />
      </Grid.RowDefinitions>
      <Grid.ColumnDefinitions>
      <ColumnDefinition Width="Auto" />
      </Grid.ColumnDefinitions>

      <Grid Grid.Row="0">
      <Grid.RowDefinitions>
      <RowDefinition Height="Auto" />
      <RowDefinition Height="Auto" />
      </Grid.RowDefinitions>
      <Grid.ColumnDefinitions>
      <ColumnDefinition Width="Auto" />
      <ColumnDefinition Width="Auto" />
      </Grid.ColumnDefinitions>
      <Label Grid.Row ="0" Grid.Column="0" Text="Category: " />
      <Label Grid.Row ="1" Grid.Column="0" Text="Meal Time: " />
      <Label Grid.Row ="0" Grid.Column="1" Text="{Binding Recipe.Category}" />
      <Label Grid.Row ="1" Grid.Column="1" Text="{Binding Recipe.MealTime}" />

      </Grid>
      <ListView VerticalOptions="Start" Grid.Row="1" HasUnevenRows="False" x:Name="IngredientsListView"
      ItemsSource="{Binding Recipe.Ingredients}"
      RefreshCommand="{Binding LoadRecipesCommand}"
      >
      <ListView.ItemTemplate>
      <DataTemplate>
      <ViewCell>
      <Grid Padding="0">
      <Grid.RowDefinitions>
      <RowDefinition Height="Auto" />
      <RowDefinition Height="Auto" />
      </Grid.RowDefinitions>
      <Grid.ColumnDefinitions>
      <ColumnDefinition Width="Auto" />
      <ColumnDefinition Width="Auto" />
      <ColumnDefinition Width="Auto" />
      <ColumnDefinition Width="Auto" />
      </Grid.ColumnDefinitions>
      <Label Grid.Row="0" Grid.Column="0" Text="{Binding }"/>
      <Label Grid.Row ="0" Grid.Column="1" FontAttributes="Bold" Text="{Binding Count}" />
      <Label Grid.Row ="0" Grid.Column="2" FontAttributes="Bold" Text="{Binding Measure}" />
      <Label Grid.Row ="0" Grid.Column="3" FontAttributes="Bold" Text="{Binding Name}" />
      <Label Grid.Row ="1" Grid.Column="2" Grid.ColumnSpan="2" FontAttributes="Italic" FontSize="Micro" Text="{Binding Note}" />
      </Grid>
      </ViewCell>
      </DataTemplate>
      </ListView.ItemTemplate>
      </ListView>

      <ListView VerticalOptions="Start" Grid.Row="2" HasUnevenRows="False" x:Name="InstructionsListView"
      ItemsSource="{Binding Recipe.Instructions}"

      >
      <ListView.ItemTemplate>
      <DataTemplate>
      <ViewCell>
      <Label Text="{Binding .}"/>
      </ViewCell>
      </DataTemplate>

      </ListView.ItemTemplate>
      </ListView>
      </Grid>
      </ScrollView>









      share|improve this question













      I want to maintain a completely declarative UI with Xamarin data binding.



      I followed this thread which is a nightmare that doesn't end well.
      https://forums.xamarin.com/discussion/19874/listview-inside-stacklayout-a-height-problem/p2



      They essentially settled on this, attempting to dynamically size the listviews based on the content (looks brittle): Xamarin.Forms ListView size to content?



      Using this code, my listviews yield a bunch of blank space after the actual content. Totally out of control. Yes, I tried HasUnevenRows="true"



          <ScrollView>
      <Grid >
      <Grid.RowDefinitions>
      <RowDefinition Height="Auto" />
      <RowDefinition Height="Auto" />
      <RowDefinition Height="Auto" />
      </Grid.RowDefinitions>
      <Grid.ColumnDefinitions>
      <ColumnDefinition Width="Auto" />
      </Grid.ColumnDefinitions>

      <Grid Grid.Row="0">
      <Grid.RowDefinitions>
      <RowDefinition Height="Auto" />
      <RowDefinition Height="Auto" />
      </Grid.RowDefinitions>
      <Grid.ColumnDefinitions>
      <ColumnDefinition Width="Auto" />
      <ColumnDefinition Width="Auto" />
      </Grid.ColumnDefinitions>
      <Label Grid.Row ="0" Grid.Column="0" Text="Category: " />
      <Label Grid.Row ="1" Grid.Column="0" Text="Meal Time: " />
      <Label Grid.Row ="0" Grid.Column="1" Text="{Binding Recipe.Category}" />
      <Label Grid.Row ="1" Grid.Column="1" Text="{Binding Recipe.MealTime}" />

      </Grid>
      <ListView VerticalOptions="Start" Grid.Row="1" HasUnevenRows="False" x:Name="IngredientsListView"
      ItemsSource="{Binding Recipe.Ingredients}"
      RefreshCommand="{Binding LoadRecipesCommand}"
      >
      <ListView.ItemTemplate>
      <DataTemplate>
      <ViewCell>
      <Grid Padding="0">
      <Grid.RowDefinitions>
      <RowDefinition Height="Auto" />
      <RowDefinition Height="Auto" />
      </Grid.RowDefinitions>
      <Grid.ColumnDefinitions>
      <ColumnDefinition Width="Auto" />
      <ColumnDefinition Width="Auto" />
      <ColumnDefinition Width="Auto" />
      <ColumnDefinition Width="Auto" />
      </Grid.ColumnDefinitions>
      <Label Grid.Row="0" Grid.Column="0" Text="{Binding }"/>
      <Label Grid.Row ="0" Grid.Column="1" FontAttributes="Bold" Text="{Binding Count}" />
      <Label Grid.Row ="0" Grid.Column="2" FontAttributes="Bold" Text="{Binding Measure}" />
      <Label Grid.Row ="0" Grid.Column="3" FontAttributes="Bold" Text="{Binding Name}" />
      <Label Grid.Row ="1" Grid.Column="2" Grid.ColumnSpan="2" FontAttributes="Italic" FontSize="Micro" Text="{Binding Note}" />
      </Grid>
      </ViewCell>
      </DataTemplate>
      </ListView.ItemTemplate>
      </ListView>

      <ListView VerticalOptions="Start" Grid.Row="2" HasUnevenRows="False" x:Name="InstructionsListView"
      ItemsSource="{Binding Recipe.Instructions}"

      >
      <ListView.ItemTemplate>
      <DataTemplate>
      <ViewCell>
      <Label Text="{Binding .}"/>
      </ViewCell>
      </DataTemplate>

      </ListView.ItemTemplate>
      </ListView>
      </Grid>
      </ScrollView>






      forms listview xamarin






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 9 at 3:09









      Sean Anderson

      170215




      170215





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














           

          draft saved


          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53219309%2fwhat-is-the-accepted-way-of-displaying-two-variably-sized-lists-on-a-single-page%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53219309%2fwhat-is-the-accepted-way-of-displaying-two-variably-sized-lists-on-a-single-page%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Schultheiß

          Verwaltungsgliederung Dänemarks

          Liste der Kulturdenkmale in Wilsdruff