We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to change the button style from elevatedFlatRound to elevatedSoft on button click while running the code.
Find below code for reference :
@IBAction func button1Tapped(_ sender: UIButton) { if sender.isSelected { button1.applyNeuBtnStyle(type: .elevatedFlatRound, title: "Button 1", image: UIImage(systemName: "plus"), imageTintColor: .white, imageDimension: 24, hideBasePit: false, hideImagePit: false) sender.isSelected = false } else { button1.applyNeuBtnStyle(type: . elevatedSoft, title: "Button 1", image: UIImage(systemName: "plus"), imageTintColor: .white, imageDimension: 24, hideBasePit: false, hideImagePit: false) sender.isSelected = true } }
The text was updated successfully, but these errors were encountered:
Currently, there is no support for changing button style once it's set. This is in our pipeline as enhancement
Sorry, something went wrong.
Is there any way to remove previous applied style layers and apply new. Or any way to keep highlighted button style once its selected.
there is no functionality as of now to remove current applied style. Will add this as an enhancement in future releases.
No branches or pull requests
I want to change the button style from elevatedFlatRound to elevatedSoft on button click while running the code.
Find below code for reference :
The text was updated successfully, but these errors were encountered: