diff --git a/examples/hello/app/windows/main.rb b/examples/hello/app/windows/main.rb index 86b93141..088510ae 100644 --- a/examples/hello/app/windows/main.rb +++ b/examples/hello/app/windows/main.rb @@ -1,15 +1,11 @@ module GUI class MainWindow < LVGUI::BaseWindow + include LVGUI::BaseUIElements include LVGUI::ButtonPalette def initialize() super() - LVGL::LVLabel.new(@container).tap do |label| - label.set_long_mode(LVGL::LABEL_LONG::BREAK) - label.set_text(%Q{Your device booted to\nstage-2 of a NixOS system successfully!\n\nSelect from the following options}) - label.set_align(LVGL::LABEL_ALIGN::CENTER) - label.set_width(@container.get_width_fit) - end + add_main_text(%Q{Your device booted to\nstage-2 of a NixOS system successfully!\n\nSelect from the following options}) add_buttons([ ["Display validation", ->() { DisplayValidationWindow.instance.present }],