content commit
. Click on each of these errors and comment them out using //
at the beginning of those lines. onContentCommitted: onContentCommit,
should become //onContentCommitted: onContentCommit,
final ValueChanged<CommittedContent>? onContentCommitted
should become //final ValueChanged<CommittedContent>? onContentCommitted
onContentCommit(CommittedContent content) async {...}
. Change it to say onContentCommit(dynamic content) async {...}
..env
to the root of the project directory. This is to prevent a build error.android > app > build.gradle
(not to be confused with android > build.gradle
), and scroll down to signingConfig signingConfigs.release
at line 111. Change this to signingConfig signingConfigs.debug
.flutter build apk --release --flavor prod
/lib/repository/models/html
add a new file called giphy.dart
. Inside this, put only const GIPHY_API_KEY = "";
. If you have your own API key for GIPHY, you can place it inside the quotes, otherwise leave it as is.flutter build web --web-renderer=canvaskit
. It will output the build files to build/web
to be hosted on your server.flutter run
or the green play button at the top of your IDEonContentCommit
.development
branch, not the master
branch.good-first-issue
or the Difficulty: Easy
label on GitHub. These will be easier issues to help you start learning Flutter, without dealing with an overly-complex bug or feature.