Anna
Anna

Reputation: 1

ListView not scroll enought

I'm newer with mobile development and xamarin. I've got a listview in a xamarin page in an application with a tabbar in the bottom. The listview doesn't scroll enought to show the last items. This is the xaml code. Someone can help me? Thanks. I add some code and an image of the problem.

errore

<Grid >
    <Grid.RowDefinitions>
        <RowDefinition Height="40"></RowDefinition>
    </Grid.RowDefinitions>                   
    <Grid Grid.Row="0" VerticalOptions="CenterAndExpand" Margin="4" Padding="2">
        <Grid.ColumnDefinitions> 
            <ColumnDefinition Width="Auto"></ColumnDefinition>
            <ColumnDefinition Width="50"></ColumnDefinition>
            <ColumnDefinition Width="90"></ColumnDefinition>
            <ColumnDefinition Width="60"></ColumnDefinition>
            <ColumnDefinition Width="50"></ColumnDefinition>
        </Grid.ColumnDefinitions>
        <Label BackgroundColor="Gray" TextColor="White" Text = "Nominativo       _" Grid.Column="0" />      
        <Label BackgroundColor="Gray" TextColor="White" Text = "Badge" Grid.Column="1"/>
        <Label BackgroundColor="Gray" TextColor="White" Text = "Ult.Timb." Grid.Column="2"/>
        <Label BackgroundColor="Gray" TextColor="White" Text = "Tel." Grid.Column="3"/>
        <Label BackgroundColor="Gray" TextColor="White" Text = "Pres." Grid.Column="4"/>
    </Grid>                     
         -->> listview definition
</Grid>

Upvotes: 0

Views: 9

Answers (0)

Related Questions