Add scroll with scrolls in example

This commit is contained in:
Insality
2020-04-13 19:18:45 +03:00
parent 07e847497c
commit 55bcea7878
2 changed files with 648 additions and 1 deletions

View File

@@ -39,6 +39,15 @@ end
function M.setup_page(self)
self.druid:new_scroll("scroll_page_content", "scroll_page")
self.druid:new_scroll("simple_scroll_content", "simple_scroll_input")
-- scroll contain scrolls:
-- parent first
self.druid:new_scroll("children_scroll_content", "children_scroll")
-- chilren next
self.druid:new_scroll("children_scroll_content_1", "children_scroll_1")
self.druid:new_scroll("children_scroll_content_2", "children_scroll_2")
self.druid:new_scroll("children_scroll_content_3", "children_scroll_3")
init_grid(self)
end