LVGL Pro - Complex Subject data

I am looking at making a component that might get pretty data intensive.

Is there a way to create like a struct with subjects? lets say you have an event that know about its start time and end time and the date…

I have not seen an example for a table list that is tied to a subject that might answer my question…

Thank You

Hi @MainStreetDeveloper,

Yes, it’s possible. Also, I suggest reading more about Observers. This resource can be used to manage the subject and monitor the current value.

typedef struct
{
    lv_obj_t * parent;
    lv_sujbect_t *sb;
   uint8_t current_view;
}table_view_t;