-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Karmanyaah Malhotra edited this page Mar 29, 2020
·
14 revisions
This is my guide for this stuff.
You should always try to mess around with this code and don't just stick to the order this is in.
Also, DO NOT just copy paste this code unless I say that when describing a link. Try to understand what's going on in the tutorial to a certain extent. The level of understanding you need is that you should be able to replicate what they did with very barebones documentation. You might finish your tutorial sooner but you won't know it for when you need to.
- Fluttercrashcourse.com - junior dev course
- I think he starts talking about this in video 3 - https://flutter.dev/docs/development/tools/formatting - wasn't enabled by default for me
- (Optional) - overlaps with parts of the crash course https://codelabs.developers.google.com/codelabs/from-java-to-dart
-
https://flutter.dev/docs/development/ui/layout/tutorial
- Play with various parameters for look and feel (color, style etc.)
- Use the file from the junior dev course
- Tip: https://flutter.dev/docs/development/tools/formatting#using-trailing-commas
- Theming + styles this
- Cool tip: https://pub.dev/packages/wakelock
- Enable before AND after runApp in main
-
https://flutter.dev/docs/development/ui/interactive
- Follow through and play with stuff for the switzerland app thing
- No need to follow through on the 'Managing state' part but spend some time to understand the different models for managing state.
- Use the file from step 2
- Cool tip: at the end, do ctrl+shift+p and pick flutter: outline view - make sure a file with a lot of stuff is open
-
https://flutter.dev/docs/testing/build-modes
- Go over in not too much detail
- (Build for android as 'flutter build apk' and enjoy) or (Build for iOS I don't know how it works)
- Clone basic branch of this repo
-
https://flutter.dev/docs/cookbook/navigation/navigation-basics and https://flutter.dev/docs/cookbook/navigation/named-routes
- You can do these in seperate docs if you want
-
passing arguments. Preferably do both approaches
- I personally like the first approach a lot better because you don't know when arguments are needed in the second one.
- (Optional) https://flutter.dev/docs/cookbook/navigation/navigate-with-arguments
- just go over it once
-
https://flutter.dev/docs/cookbook/navigation/returning-data
- Step 2 - Some of you might be curious as to what the async and await do. These are easy way to execute code simultaneously (loosely speaking), and we'll go over these in a future tutorial.
- https://dart.dev/guides/language/language-tour#cascade-notation- cool thing to know about
- try to go to the second and press back
- you see null
- Try to fix that
- Not attempted yet but https://flutter.dev/docs/codelabs/implicit-animations
- Do the infinite list
- optionally do part 2
- Now, you will be wondering why you are doing such a simple codelab now - this is why
- Challenge: add a delay of 3 seconds to
_suggestions.appendwhateverstuff
- Challenge 2: Make it so that the delay doesn't stop the scrolling
- Hint: use state to your advantage
- Hint 2: Only click this if you absolutely have to.
- Maybe this IDK not been here yet
Nice, I'll keep adding stuff