218
Other dev won't follow best practices, is this common?
(lemmy.world)
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Follow the wormhole through a path of communities !webdev@programming.dev
I wonder, what kind of wrappers? I have seen some wrappers that seem useless at first, but they shine when we do a refactor because the wrappers concentrate logic in one place.
the pointless and poorly named kind.
Here's one example of many:
For those unfamiliar with Flutter, Column is your go-to out of the box widget that's already flexible and simple enough to implement and customize.
Group
exists purely to set a cross axis alignment value, and by name provides no indication as to what it does or how it lays out its children.All that just to save one line to override the default cross axis alignment...