Hi, I have a view with with a StackLayout, in it I inserted a Table View and after that a Label. Now after the tableview there is a lot of blank space. How can I remove it? Here is the code that I'm using for the table view:
_contactTable = new TableView () {
Intent = TableIntent.Menu,
Root = new TableRoot{
new TableSection ("Contacts:") {
_phoneField,
_mailField,
_faxField,
_siteField
}
},
VerticalOptions = LayoutOptions.End,
};
The effect that I'm trying to reach is to have a table with some contact information in it like phone number and other. The effect that I have with this code is good but the blank space is too much.