computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
604 B
13 lines
604 B
# Variables |
|
|
|
In Flutter, variables are used to store values. There are two types of variables in Flutter: |
|
|
|
- local variables: These are declared within a function and are only accessible within that function |
|
- Instance variables: They are declared within a class and are accessible throughout the entire class. |
|
|
|
Variables in Flutter can store values of different data types, such as numbers, strings, booleans, and more. |
|
|
|
Visit the following resources to learn more: |
|
|
|
- [Variables](https://dart.dev/guides/language/language-tour#variables) |
|
- [Dart - Variables](https://howtoflutter.dev/dart/variables/) |