I am trying to use MDCSnackBar on my app.
It works well on iOS 12 simulator but the snack bar is not appearing on my phone (iOS 13). I also tried to run the app on a 13.4 simulator and the result is the same
This is how I use MDCSnackBar
func showSnackBar(messageText: String){
let message = MDCSnackbarMessage()
message.duration = 1
message.text = messageText
MDCSnackbarManager.show(message)
}
Any help, please?