Create custom xamarin grid

0

Good Someone can help me I am developing a loan application and I need to create a view such as this one of the image

and something like that

    
asked by JOSE ANGEL RAMIREZ HERNANDEZ 13.01.2018 в 16:34
source

1 answer

1

If you notice, both pages have the same structure:

  • Navigation bar with buttons
  • List of X columns with header and footer
  • Action button at the bottom

The page is a ContentPage, which contains a Grid with 3 rows: header, list and footer. The navigation bar is implemented with a NavigationPage that surrounds your ContentPage.

The list is implemented with a ListView, something similar to this:

    <ListView ItemsSource="{Binding ListaDatos}">
        <ListView.ItemTemplate>
            <DataTemplate>
                <ViewCell>
                    <Grid>
                        <!-- acá van las columnas -->
                    </Grid>
                </ViewCell>
            </DataTemplate>
        </ListView.ItemTemplate>
    </ListView>

The rest is to put Buttons and the buttons in the toolbar. Here is a guide to the toolbar .

    
answered by 25.01.2018 / 21:41
source