Hi,
I am having a couple of issues when using the TabbedPage
in Xamarin.Forms app I am hoping you all can help me with.
The
ListView
control I am using to display my list of Members is not respecting the Nav Bar up top, and is rendering underneath it. I know w/native iOS handling theScrollView.ContentInset
seems to take care of this, and perhaps subclassing this page and using a custom renderer is an option. However, I was hoping to avoid that. Any suggestions on how to avoid this? (see attached Image1)I am using the
ItemSelected
event to trigger navigation to the corresponding page. However, I cannot seem to navigate to that page w/out doing aNavigation.PushModalAsync
. If I try to simply navigate using Navigation.PushAsync, nothing happens. No error is thrown, but no navigation takes place. (see code below)
--
Note: code used to trigger the navigation issue mentioned above ...
public async void OnMemberSelected (object sender, SelectedItemChangedEventArgs e) {
var _groupMemberVM = (GroupMemberViewModel)e.SelectedItem;
var _groupMemberInfoPage = new GroupMemberInfoXaml ();
_groupMemberInfoPage.SetGroupMemberViewModel (_groupMemberVM);
await Navigation.PushAsync(_groupMemberInfoPage);
}
Thanks in advance!