Created
August 23, 2020 13:40
-
-
Save LeeKahSeng/08c1a15f51b872e8df5a6e91984b914d to your computer and use it in GitHub Desktop.
This file contains 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
struct SFSymbolNameContentConfiguration: UIContentConfiguration, Hashable { | |
var name: String? | |
func makeContentView() -> UIView & UIContentView { | |
// Initialize an instance of SFSymbolNameContentView | |
return SFSymbolNameContentView(configuration: self) | |
} | |
func updated(for state: UIConfigurationState) -> Self { | |
return self | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment