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
I wonder can I create a Dockitem without any pre styled?, I mean there are no Tab or Split styles, just empty DockItem, so I can add it to DockArea left_dock or right_dock then create custom sidebar.
Currently, I need to create the left panel like this:
let left_panels = DockItem::split_with_sizes(Axis::Vertical,vec![DockItem::tabs(vec![],None,&dock_area, cx)],vec![None,None],&dock_area,
cx,);
It will be more flexible if I can create custom left panel like this:
let left_panels = DockItem::custom(< some view >)
It will also help to solve #318 and #430 in the future
The text was updated successfully, but these errors were encountered:
I wonder can I create a
Dockitem
without any pre styled?, I mean there are no Tab or Split styles, just emptyDockItem
, so I can add it toDockArea
left_dock or right_dock then create custom sidebar.Currently, I need to create the left panel like this:
It will be more flexible if I can create custom left panel like this:
It will also help to solve #318 and #430 in the future
The text was updated successfully, but these errors were encountered: