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
If you notice, both pages have the same structure:
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 .