I have a basic layout in EDC:
group { "sample";
parts {
text { "text0";
desc { "default";
rel1.relative: 0 0;
rel2.relative: 1 0.5;
color: 255 0 0 255;
text {
text: "Title";
font: "Tizen:style=Regular";
size: 30;;
align: 0.5 1;
}
}
}
text { "text1";
desc { "default";
rel1.relative: 0 0.5;
rel2.relative: 1 1;
color: 255 0 255 255;
text {
text: "SubTitle";
font: "Tizen:style=Regular";
size: 14;
align: 0.5 0;
}
}
}
}
}
This is working as intended:
However I want to position those two texts in the vertical middle:
I draw two green lines, the texts shall be positioned in between them (vertically).
How can I achieve this with EDC?
Extra info: I need those two texts, one is not enough.