I want to achieve a shape that is like rectangular button. But the close I got is adding a rectangle as the background. This is rectangular and I could not find elm bubble on wearable.
Code:
Evas_Object *bg1 = evas_object_rectangle_add(tab);
EXPANDFILL(bg1);
evas_object_color_set(bg1, 255, 255, 255, 255);
elm_table_pack(tab, bg1, 0, 0, 1, 1);
evas_object_show(bg1);
So how can I achieve this ellipsical background or rectangle with a corner radius?