Rap Payne

Results 6 issues of Rap Payne

# Add New Prompt > ⚠️ PLEASE INCLUDE YOUR PROMPTS IN BOTH THE `README.md` and `prompts.csv` FILES FOLLOWING THE GUIDELINES PROVIDED BELOW. You'll need to add your prompt into README.md,...

When you scaffold a project with 'flutter create', you get a lib folder where your widgets are created. - Should there be a recommended structure under lib? - If so,...

When you don't want to show a "nothing", render a SizedBox(). For instance, if (snapshot.connectionState == ConnectionState.none) { return const SizedBox(); } else if (snapshot.hasData) { return someOtherWidgets; }

Files with custom widgets should contain no more than one public class. The file name should be the same as the public class it contains. What about libraries that contain...

When providing a closure that accepts parameters for which you don't need to provide a value, it is recommended that you use the underscore/underbar character (_). For example, when creating...

The README did not mention that MongoDB needs to be installed and running on port 27017 for this to work. I added that. I also noticed that there were a...