Styling in Native apps

0
Hello. I tried to remove the border of one of my button in my apps. I have tried to add my custom class in custom-variable.js as mentioned in Style Your Mendix Native Mobile App | Mendix Documentation.  But when I run locally there was nothing changed in button 4 Is there anything wrong from what I did?
asked
2 answers
-1

Hello Wahyu Dimas,
You have created your customized classes in custom-variable.js which is wrong. Create them in main.js

answered
1

Hi wahyu dimas,

backgroundColor: 'white',
borderRadius: 0,
borderColor: 'transparent',

try to use this code it will work 

or

Check out this link once

https://blog.logrocket.com/create-style-custom-buttons-react-native/

 

hope this helps.

 

answered