Dustyn
04/25/2020, 7:46 PMclass MasterDetailView(master: UIComponent, detail: UIComponent) : Fragment() {..}
i want to initate via the find method - i tried the following but that does not work like i expect it to work.. what am i missing?
val master = find<ProjectStructureFragment>()
val detail = find<ProjectStructureEditorView>()
workspace.dock(find<MasterDetailView>("master" to master, "detail" to detail))
Thanks in advanceDustyn
04/25/2020, 7:51 PM