lv_bevy_ecs 0.7.0

Safe Rust bindings to the LVGL graphics library using Bevy's ECS framework
Documentation
#![doc = include_str!("../README.md")]
#![no_std]

extern crate alloc;

#[macro_use]
pub mod widgets;
#[cfg(feature = "lvgl_alloc")]
pub mod allocator;
pub mod animation;
pub mod bevy {
    //! Re-exported modules from bevy_ecs
    pub use bevy_ecs::*;
}
pub mod display;
pub mod events;
pub mod functions;
pub mod input;
pub mod logging;
pub mod styles;
pub mod subjects;
pub mod support;
pub mod sys {
    //! Re-exported modules from lightvgl_sys
    pub use lightvgl_sys::*;
}
pub mod timers;

#[cfg(feature = "ctor")]
#[ctor::ctor]
fn init() {
    crate::functions::lv_init();
}