Is there any way to style the text message within an ionic 2 toast?
I have tried this:
You should be able to change any of the message styling in the css using .toast-message
selector:
.toast-message {
font-family: Helvetica,
color: red
}
Or, if you look at the docs (http://ionicframework.com/docs/v2/api/components/toast/Toast/) there is a cssClass property you can use to assign your toast a specific class and then style that.