This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
var apple = FoodClass(); | |
apple.name = "Apple"; | |
apple.color = "Red"; | |
apple.calories = 100; | |
apple.isNatural = true; | |
print("${apple.name}, ${apple.calories}, ${apple.isNatural}, ${apple.color}"); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
for(var i = 1; i<=10; i++){ | |
print("$i"); | |
} | |
List list_1 = ["s1","s2","s3","s4","s5"]; | |
for(var i=0; i<list_1.length; i++){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
var my_value = true; | |
if(my_value == true){ | |
print("My value is True"); | |
}else{ | |
print("My value is False"); | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
void my_function(String a1, int a2){ | |
print("This is my function! $a1 $a2"); | |
} | |
my_function("String 1", 1); | |
my_function("String 2", 2); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
List my_list = ["s1","s2","s3","s4"]; | |
//Size 4 | |
var my_element1 = my_list[3]; | |
print(my_element1); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
var c1 = 10; | |
var c2 = 5; | |
var c3 = 10; | |
print("Is c1 Greater Than c2? Ans: ${c1 > c2}\n"); | |
print("Is c1 Greater Than c2? Ans: ${c1 < c2}\n"); | |
print("Is c2 Greater Than c1? Ans: ${c2 > c1}\n"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
var c1 = 89; | |
var c2 = 50; | |
print("Addition Result: ${c1+c2}"); | |
print("Subtraction Result: ${c1-c2}"); | |
print("Multiplication Result: ${c1*c2}"); | |
print("Division Result: ${c1/c2}"); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
var myString1 = "My String 1"; | |
var myString2 = "My String 2"; | |
var myString3; | |
//myString3 = myString1 + myString2; | |
//myString3 = 'My String 1' '\nMy String 2'; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main(){ | |
print("This is my first course in Urdu 1."); | |
print("This is my first course in Urdu 2."); | |
print("This is my first course in Urdu 3."); | |
print("This is my first course in Urdu 4."); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dependencies { | |
//RxJava2 | |
implementation 'io.reactivex.rxjava2:rxandroid:2.1.0' | |
implementation 'io.reactivex.rxjava2:rxjava:2.2.3' | |
implementation 'io.reactivex.rxjava2:rxkotlin:2.2.0' | |
//Glide | |
implementation 'com.github.bumptech.glide:glide:4.8.0' | |
kapt "androidx.lifecycle:lifecycle-compiler:2.1.0-alpha01" |
NewerOlder