I am using synth in one of my projects.
I have 2 problems while implementing the synth library.
1) As you can see in the image above, around the buttons, there is some shadows. How can I remove them?
2) I was trying to remove the black color border around the cancel button, but was not able to remove that. How can I remove it?
You can't only remove the shadows. Synth is mainly for neumorphic components which have shadows. You can set android:clipChildren="false" to the parent of the buttons so that the shadows don't get clipped.
You have to set neuBaseColor so that the platform color is also changed
I am using synth in one of my projects. I have 2 problems while implementing the synth library. 1) As you can see in the image above, around the buttons, there is some shadows. How can I remove them? 2) I was trying to remove the black color border around the
cancel
button, but was not able to remove that. How can I remove it?