GX_RECTANGLE size; gx_utility_rectangle_define(&size, 60, 63, 100, 12); for (int i = 0; i < 6; i++) { GX_PROMPT *prompt = malloc(sizeof(GX_PROMPT)); gx_prompt_create(prompt, "PromptName", (GX_WIDGET* )&MainScreen.MainScreen_verticalListOneFunction, NULL, GX_STYLE_TEXT_LEFT | GX_STYLE_BORDER_NONE, 0, &size); gx_prompt_text_id_set(prompt, GX_STRING_ID_STRING_186); // gx_prompt_text_set(prompt, "Man"); gx_prompt_font_set(prompt, GX_FONT_ID_FONT_LABEL_REGULAR_PLAIN); gx_prompt_text_color_set(prompt, GX_COLOR_ID_COLOR_SECONDARY_50, GX_COLOR_ID_COLOR_SECONDARY_50, GX_COLOR_ID_COLOR_SECONDARY_50); gx_widget_attach((GX_WIDGET* )&MainScreen.MainScreen_verticalListOneFunction, (GX_WIDGET* )prompt); gx_system_dirty_mark((GX_WIDGET* )&MainScreen.MainScreen_verticalListOneFunction); }