I'm developing a Flutter app, and I am trying to create a reusable button widget to be used in various places throughout my app. I want every button to be required to have text, and an onpressed function, with an option of having an image. Whenever I try to create a button that doesn't have the buttonImage property, I get a "Row's Children must not contain any null values" error, and I'm having issues trying to solve it. Below is …
flutter ×1