Currently it doesn't support that many widgets but in the future (perhaps with support of contributors ) it'll support many essential widgets and features! This limitation doesn't mean it's not fit for development - infact a complete project has been made with this GUI!!
Here's a snippet showing a basic imgui created with Lovely-Imgui::
Code: Select all
imgui = require 'imgui'
function love.draw()
if imgui.button('Hello world') then
imgui.label('You are clicking on the button!!')
end
imgui.draw()
end