There has to be a term for this. As craftspeople, we get excited about new tools. Sometimes our goal is not to build the thing, but to [mis]use the shiny new tool.
Ever since Swift gained support for multiple trailing closures, I see people writing this SwiftUI code:
Button {
doWhatever()
} label: {
Text(โButtonโ)
}
Instead of:
Button(action: doWhatever) {
Text(โButtonโ)
}
I liked the old way better.