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