mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
10 lines
227 B
Lua
10 lines
227 B
Lua
--[[--
|
|
TopContainer contains its content (1 widget) at the top of its own dimensions
|
|
--]]
|
|
|
|
local WidgetContainer = require("ui/widget/container/widgetcontainer")
|
|
|
|
local TopContainer = WidgetContainer:new()
|
|
|
|
return TopContainer
|