Is it more performant to remove components from existing widgets than to create custom widgets?
I am making a Flutter desktop application that uses multiple widgets for example like 30 to 50+ buttons (or any interactable widget) on a single page/screen.
Is it more performent to remove components from existing widgets than to create custom widgets?
I am making a Flutter desktop application that uses multiple widgets for example like 30
to 50+ buttons (or any interactable widget) on a single page/screen. I don’t want the default styling of Flutter like the InkWell
in ElevatedButton
, etc. I want to have custom styling.