-
Hi guys! I made a custom snackbar component, that only displays some success or warning or error response texts with custom styling and design according to my app. It auto closes itself after a few seconds. Any idea how to work around it? This is how i display the snackbar in my app:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can try setting ps.: For positioning though, I would recommend using a |
Beta Was this translation helpful? Give feedback.
You can try setting
isUserInteractionEnabled="false"
on theAbsoluteLayout
.ps.: For positioning though, I would recommend using a
GridLayout
androws="*, auto"
and placing the snackbar intorow="1"
to push it to the bottom of the screen. It's usually simpler than positioning with AbsoluteLayout.