The following code results in a thin blank bar with no content. ```go type customtree struct { xwidget.FileTree } func NewCustomTree(root fyne.URI) *customtree { tree := &customtree{} tree.ExtendBaseWidget(tree) tree.Root = root.String() return tree } ```