You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Say I have photoshop like layers where you can create a folder to group those layers , You can reorder the folders (groups) and also reorder layers inside those groups
How can this be implemented using a Lazy List
Let's say layer has just name class Layer(val name : String) and group has a list of layers class Group(val layers : List<Layer>)
and we've been given groups : List<Group> as a parameter , at the current moment I've implemented a list of layers with a drag handle but can't figure out how to implement reorderable groups
The text was updated successfully, but these errors were encountered:
Say I have photoshop like layers where you can create a folder to group those layers , You can reorder the folders (groups) and also reorder layers inside those groups
How can this be implemented using a Lazy List
Let's say layer has just name
class Layer(val name : String)
and group has a list of layersclass Group(val layers : List<Layer>)
and we've been given
groups : List<Group>
as a parameter , at the current moment I've implemented a list of layers with a drag handle but can't figure out how to implement reorderable groupsThe text was updated successfully, but these errors were encountered: