mirror of
https://github.com/koreader/koreader.git
synced 2025-12-18 12:02:09 +01: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
|