Using this tutorial. Had to install dart to get the pub command. Tutorial on customizing zsh (in case I want to do that later). Added the directory where pub installs all of its executables to PATH (in ~/.zshrc ) You can then refresh the terminal to use the newly changed config file without closing andContinue reading “CRUD with PostgreSQL in Flutter”
Monthly Archives: January 2020
Flutter Resources
Awesome Flutter – Huge Resource list Tutorials: Roadmap to Becoming a Flutter Developer Dart Operators Packages: Awesome Flutter Packages – curated list Reflectly-style login page Communities: FlutterDev Subreddit
Boring Show Episode 2 Notes
Basic Testing Tutorial here. Flutter test library documentation here. Tester.pump() runs one frame of the app and then stops. Tester.pumpAndSettle() runs until the queued events are all done. You can do find.byIcon() or find.byType() (and likely a lot of other useful things too). For converting JSON, quick and easy way is to use dart:convert (built-in).Continue reading “Boring Show Episode 2 Notes”
Saving Data to the Cloud with Firebase
I am following this tutorial. Here’s another tutorial on uploading images, video and audio. Not exactly what I need but might be useful later. Had a bit of trouble finding the bundle identifier for iOS. Found it in ios/Runner.xcodeproj/project.pbxproj . The generated file goes in the ios/Runner folder. The pod file, on the other hand, isContinue reading “Saving Data to the Cloud with Firebase”