where to style radio buttons in native mobile

1
in the variables.js there is a section to style checkboxes, is there also a section to style radio buttons?  
asked
4 answers
0

it looks like the buttons are being hardcoded into the app (RadioButtons.editorConfig.js)

can anyone confirm this?

 

answered
0

Hi Jason,

check the radio button styles in the bleow folder

themesource\atlas_core\native\core\widgets\radiobuttons.js

you can use the section to style radio buttons on use seperate  js file to override it.

 


 

answered
0
export const com_mendix_widget_native_radiobuttons_RadioButtons = {
    labelTextStyle: {
    },
    radioButtonItemContainerStyle: {
    },
    radioButtonItemContainerHorizontalStyle: {
    },
    circularButtonStyle: {
    },
    activeButtonStyle: {
    },
    radioButtonItemContainerDisabledStyle: {
    },
    radioButtonItemTitleStyle: {
    },
    validationMessage: {
    }
};

this seems to be the code, but still cant seem to make the radio buttons bigger, only change color

answered
0

radio buttons were added to the custom variables file.

easiest way to do this, is to save your current variable file and use a tool such as winmerge to merge your old variables with your new ones, without overrighting the variables you have already set.

answered