mirror of
https://github.com/Insality/druid.git
synced 2025-06-27 18:37:44 +02:00
12 lines
239 B
Lua
12 lines
239 B
Lua
---@class examples.basic_rich_text: druid.widget
|
|
---@field rich_text druid.rich_text
|
|
local M = {}
|
|
|
|
|
|
function M:init()
|
|
self.druid:new_rich_text("text", "Hello, I'm a <font=text_bold><color=E48155>Rich Text</font></color>!")
|
|
end
|
|
|
|
|
|
return M
|