Defining controllers inside build method – Flutter
I'm having trouble deciding where to define my controller which is used for scrolling. My Widget is stateless (and I'd like to keep it like that). Should I define the controller inside the build method, outside the Widget itself or…