pub fn handle_click(
_x: usize,
y: usize,
width: usize,
content: &str,
scroll: &ScrollState,
collapse: &mut CollapseState,
expandable: &mut ExpandableState,
cache: &mut CacheState,
) -> boolExpand description
Handle click event at the given position.
§Arguments
_x- X coordinate (unused)y- Y coordinate relative to the widgetwidth- Width of the widgetcontent- The markdown contentscroll- The scroll statecollapse- The collapse stateexpandable- The expandable statecache- The cache state
§Returns
true if the click was handled.