for loop, if condition is pretty much similar to Javascript. Map, where, filter function is also similar as well. If you add _ in front of variable, it will be private so it can't be accessible from other classes.
You don't need to compete with anyone else, just focus on your own path and try your best to every single task you get. Talent is nothing without effort and humility.
void main() -> runApp() -> MaterialApp() -> home: Screen(). For statefulWidget class, we need to add createState function in class and setState({}) when button pressed. \
\
class DiceRoller extends StatefulWidget {\
State createState(){
return _DiceRollWidget();
};\
}\
class _DiceRollWidget extends State {\
\
void rollDice() {\
setState((){...});\
}\
\
...\
}
I've bought another Udemy course related to flutter cus it's for beginner. I was doing bit advanced level, so I didn't understand what I was doing haha This course is pretty good, try it if you are curious :) => URL - https://www.udemy.com/share/101rfI3@FKQgUF1hu-Fcy_VsAswLDnjTX3lYzK8Kgwb5zqK4bfzW-ieQaPr9-eD6CWJGSnxO1Q==/
Flutter is pretty much about user interface but the way of designing is a way different from CSS and other frameworks so I need to practice more about this. Today, I've created login screen and successfully showed user inputted data on console. Then, I need to send to nodejs server which is my specialization.