Created
February 16, 2020 02:43
-
-
Save stleamist/87be3fcfd715ed345fae27cc25a9c115 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
let disclosureIndicatorImage = UIImage(systemName: "chevron.right")? | |
.applyingSymbolConfiguration(.init(scale: .small))? | |
.applyingSymbolConfiguration(.init(weight: .semibold))? | |
.withTintColor(UIColor.systemGray.withAlphaComponent(0.5), renderingMode: .alwaysOriginal) | |
let disclosureIndicator = UIImageView(image: disclosureIndicatorImage) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment