-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Milestone
Description
In contrast to Android, web drawing elements are mutable, which can pose a problem in current implementations.
For instance, an editable Polyline like this:
var data: List<LatLng> by remember // ...
Polyline(
points = data,
editable = true,
// ...
)When a user edits the polyline, the original data won't change. Althought it's possible to add callbacks to onDragEnd and onMouseUp, this approach deviates from the preferred Compose way of doing things.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels