mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-21 14:51:03 +00:00
13 lines
257 B
Lua
13 lines
257 B
Lua
Backdrop = {
|
|
_id = "backdrop",
|
|
}
|
|
|
|
function Backdrop:new(area) return setmetatable({ _area = area }, { __index = self }) end
|
|
|
|
function Backdrop:reflow() return {} end
|
|
|
|
function Backdrop:redraw()
|
|
return {
|
|
ui.Fill(self._area):style(th.app.overall),
|
|
}
|
|
end
|