/* * SPDX-FileCopyrightText: 2026 M5Stack Technology CO LTD * * SPDX-License-Identifier: MIT */ #pragma once #include #include namespace view { void create_status_bar(uint32_t colorSecondary = 0xB8D3FD, uint32_t colorPrimary = 0x26206A, lv_obj_t* parent = lv_screen_active()); void update_status_bar(); bool is_status_bar_created(); void destroy_status_bar(); } // namespace view