You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SnackBar requires to have an anchor view to base on. You anchor SnackBar to the whole screen content, that's why it's overlapping. By now with nature of XF, it isn't ok to avoid this issue. Plz try creating a custom Effect, I guess it might work.
Is it possible to move the Snackbar above Bottom Navigation bar.
I have created the snackbar like this
var view = ((Activity)Forms.Context).FindViewById(Android.Resource.Id.Content); var snack = Snackbar.Make(view, message, duration); if (actionText != null && action != null) snack.SetAction(actionText, action); snack.Show();
But the snackbar overlaps the bottom bar.
The text was updated successfully, but these errors were encountered: