Skip to content
New issue

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

New Writing Style #13

Closed
p-x9 opened this issue Aug 6, 2023 · 0 comments · Fixed by #15
Closed

New Writing Style #13

p-x9 opened this issue Aug 6, 2023 · 0 comments · Fixed by #15

Comments

@p-x9
Copy link
Owner

p-x9 commented Aug 6, 2023

Consider the following writing style

let color: Color = .iOS(.label)

To achieve this kind of writing, it is necessary to change the structure from defining static properties in the enum.

Following is a proposed new way to define it

extension Color: String {
    enum iOSConstant {
        case label = "iOS/label"
        case systemBackground = "iOS/systemBackground"

        var color: Color { Color(rawValue, bundle: .myModule) }
    }


    static func iOS(_ constant: iOSConstant) -> Color { constant.color }
}
@p-x9 p-x9 mentioned this issue Sep 19, 2023
@p-x9 p-x9 closed this as completed in #15 Sep 20, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant