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
HandySwiftUI/Sources/HandySwiftUI/Modifiers/ViewExt.swift
Lines 234 to 245 in 47dc334
Is there a specific reason? AnyView seems not good at performance.
The text was updated successfully, but these errors were encountered:
@inlinable @ViewBuilder func `if`<M: View, A: View>( _ condition: @autoclosure () -> Bool, modifier: (Self) -> M, else alternativeModifier: (Self) -> A ) -> some View { if condition() { modifier(self) } else { alternativeModifier(self) } }
something like this
Sorry, something went wrong.
No branches or pull requests
HandySwiftUI/Sources/HandySwiftUI/Modifiers/ViewExt.swift
Lines 234 to 245 in 47dc334
Is there a specific reason? AnyView seems not good at performance.
The text was updated successfully, but these errors were encountered: