Is it possible to call a parent's onClick method o...
# compose
c
Is it possible to call a parent's onClick method or Clickable modifier inside of a ClickableText's onClick method? I want clicks to bubble up if the user did not press a link.
If anyone finds this later, I figured out the issue was the child text was using ClickableText even when there was nothing there to click. We had to conditionally use Text or ClickableText to not swallow clicks. Even then, clicks outside of the valid links in the ClickableText do not propagate and bubble upwards to the parent. We probably need something more custom to provide that.