Data Types in Dart Programming Language | Flutter Malayalam Tutorials

preview_player
Показать описание
Hello friend 😀😀

In this video, we will discuss some of the data types that are available in the Dart programming language.

Follow us:

Groups:
Рекомендации по теме
Комментарии
Автор

Congratulations excited to see malayalees experimenting with flutter. 😘

paanoop
Автор

Hi I'm a software engineer with chemistry background.I have experience on web apps.I saw your part 1 video yesterday when I scroll YouTube videos. Today I written notes of your classes. Your teaching level is awesome. Keep going.

drama_queen
Автор

Content kollam bro... Eshtapettu.. nalla quality ondu.. Keep going nammal ondu ❤️

thevivekmnair
Автор

Njan UI UX designer aanu ...enik eth padikkanm ennund...nalla explanation.. anyway start cheythu👍
Thanks

Sanwanders
Автор

superb ബ്രോ ആ വിട്ടുപോകുന്ന കാര്യങ്ങൾ ഒക്കെ മാസ്സാണ് ഞങ്ങൾക്ക് വരാവുന്ന ഒരു തെറ്റ് ആദ്യമേ തന്നെ മനസിലാക്കാൻ സാധിക്കുന്നുണ്ട്

bibinjose
Автор

shemma illathavrk oru tip
playback speed 2x aki noku :)
and video nalla smooth ayi mansillavind, keep goin !

inaidikai
Автор

SUBSCRIBED!! Malayalathil ee oru tutorial um undallo valare santhosham💪😍

ideologic
Автор

താങ്ക്സ് നമ്മളെ പോലുള്ളവർക്ക് ഇത് ഒരുപാട് സഹായം തന്നെയാണ് 😍

aljawalmkm
Автор

Void main(){

}

Function used to group some activity

Void main – function without return. “main” is function

Data types

1) String-
String variable name = “string value”

In dart for every variable created, there should be specific data type
String value should be in double quotes ( “ ” )

Eg for String data type

String className = “Flutter Tutorial”;

2) Integer ( int )
Eg for int data type

Int studentCount = 25;

3) Double ( double ) – decimal point

Eg for double data type

double averageMark = 35.6;

4) Number ( num )
Eg for num data type

num availableDays = 5;

num availableDays = 5.5;

num can perform both integer & double value



5) Boolean ( bool )
True or False

Eg for bool

bool activeClass = true;

6) Variable ( var )
Output value can be any data type
Can be used when we don’t know what output will get or what data we want to process

7) dynamic
similar to var

8) array ( [ ] )

Group of value
In dart, there is no array data type, we use List<>

9) List<>
In List<> , we can store any data type

List<datatype> = value in square bracket

Eg for List<>

List<string> studentNames = [ “Manu”, “Jithin”, “Sam” ];

Values inside List<> can be accessed by it’s position, starting from Zeroth position.
In the above, Manu is zeroth and Jithin in first position.

Print(studentNames[0]); It’s result is Manu

Eg-2

List<int> testList = [0, 1, 2];

Eg-3

List<dynamic> dynamicList = [“Start test”, 100, true, 100.5];

print(dynamicList); It’s result is [Star test, 100, true, 100.5]

10) Map<>
It should have Key, Value

Eg for Map<>

Map<String, String> mapVariable = {
};

In List<>, we use square bracket and in Map<>, we use curly bracket

For the above example, first String is Key


Map<String, String> mapVariable = {
“name” : “ Mallu Developer”
};

Here for variable called mapVariable, name is key and Mallu Developer is value

print(mapVariable); it’s result is {name: Mallu Developer}


Eg-2

Map<String, dynamic> student = {
“Name”: “Arun”,
“age”: 25,
“mark”: 100.5,
“pass”: true,
“class”: “Flutter”,
};

TATA_evo
Автор

Videos oru rekshilla quality content aanu bro...malaythil adyayita egne..nice intiative ❤️❤️

midhunk
Автор

Kattaykk ind...very intrested, nice presentation 👌

naseefudeenk
Автор

Templatil topic koduthal valare upakaramavum. Nice presentation

SpeakAtoZ
Автор

Video മുഴുവൻ കണ്ടു നല്ല സിമ്പിൾ ആയി ചെയ്തിട്ടുണ്ട്, easy to grasp, tnx a million 🥰

MubashirRafeek
Автор

ഒരുപാട് ആപ്പ് ആശയങ്ങൾ കുഴികുത്തി മൂടിയ ഒരാൾ ആണ് ഞാൻ. പുറത്തുകൊടുത്ത് ചെയ്യിക്കാൻ cash ഇല്ല. സ്വന്തമായി ചെയ്യാനും അറിയില്ല.. ശോകം അവസ്ഥ.. എന്നെപോലുള്ളവർക്ക് ചിലപ്പോൾ സഹായകമാകും. Atleast ഒരു prototype എങ്കിലും ഉണ്ടാക്കാൻ

nidheeshjose
Автор

Kollam...poli ingane orennam adyayitta kanunne...🤍🤍🤍

sreyass
Автор

വളരെ നല്ല ക്ലാസ് വേഗം മസിലാകും വിധത്തിലുള്ള അവതരണം👏👏

sibystechlab
Автор

Nigadea videos kaanumbol nalla oru confidence aan anikk ith cheyyan pattum enn, so please comeback🙂

akashcs-sy
Автор

Nalla super class.. Ingane thanne basic ayit videos cheyane.. Super ayit manasilakunund.. 🕺🕺🕺🙏🙏🙏

manikandanv
Автор

Shey ith nerethe kannanamayirunn. Adipwoli video bro.
I learned Flutter and dart from Angela Yu.

AMAL_JOY.
Автор

Sir adipoli
Clg c program padipichapo veruthe poyathaa ee parupadi but now i love it😁

ignite