Open e-nathan opened 6 years ago
Hey,
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.
Cheers.
@tuyen-vuduc
I should create a custom Effect for the snackbar ? Thanks again
It's worth to try out. I haven't tried it yet.
Cheers.
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.