Native App - How to add border stylings in main.js file for 9.4.0

0
I am trying to add some stylings for my native app using .js file but didn’t work. Below are the steps followed  I created main.js file under project\theme\native folder and trying to add stylings related to border. eg: borderBottom:Solid / borderBottom:1px etc and it is not working. Could someone please help me out how can I use the border stylings in .js file for native app eg: export const borderLayer= { container: { // ViewStyle properties borderBottom:"solid" or borderBottom:solid }, text: { // TextStyle properties } }  
asked
2 answers
0

Hi Venu,

Please check this question’s answer based on V 8.

https://forum.mendix.com/link/questions/108723

 

Thanks,

Sufian.

answered
0

export const borderLayerStyle= {

container: {

borderColor: "#000000",

borderBottomColor: "#000000",

backgroundColor: "#fff",

borderWidth: 1,

borderBottom:"solid",

},

answered