Right To Left Layout for objects and container

I still have problem with alignment

   lv_obj_set_base_dir(ui.tab2, LV_BIDI_DIR_RTL);
    lv_obj_t* contA = lv_cont_create(ui.tab2, NULL);
    lv_obj_t* contB = lv_cont_create(ui.tab2, NULL);
    lv_obj_t* contC = lv_cont_create(ui.tab2, NULL);

    lv_obj_set_size(contA, 150, 50);
    lv_obj_set_size(contB, 150, 150);
    lv_obj_set_size(contC, 150, 250);

    lv_obj_align(contA, NULL, LV_ALIGN_IN_TOP_LEFT, 10, 120);
    lv_obj_align(contB, contA, LV_ALIGN_OUT_RIGHT_TOP, 0, 0);
    lv_obj_align(contC, contB, LV_ALIGN_OUT_RIGHT_MID, 0, 0);

these 3 container’s aligned for LTR languages,

after changing to RTL i want to auto alignment for these container to change those position

is there any variable to say to LVGL for auto change its alignment?
or i should do it manually?