Coder

Coder @coder_d295cd12743e7d146c7

About: I want to learn flutter

Joined:
Dec 29, 2024

Coder
articles - 15 total

Problem realted to condition and loop and pattern

1.Question => Find n is +ve,-ve or 0? code:- import 'dart:io'; void main() { print('Om Namah...

Learn More 0 0Dec 30 '24

Button in Flutter

code:- import 'package:flutter/material.dart'; void main() { runApp(om()); } class om extends...

Learn More 0 0Dec 30 '24

Wrap in Flutter

import 'package:flutter/material.dart'; void main() { runApp(const om()); } class om extends...

Learn More 0 0Dec 30 '24

Container in Flutter

code:- import 'package:flutter/material.dart'; void main() { runApp(om()); } class om...

Learn More 0 0Dec 30 '24

Class in dart

void main() { print('Om Namah Shivay'); Roti roti = Roti(heatReguired: 50.0, name: 'wheat',...

Learn More 0 0Dec 30 '24

Function in dart

void main() { print('Om Namah Shivay'); print(info(age: 16)); } //function String info({String?...

Learn More 0 0Dec 30 '24

Map in Dart

void main() { print('Om Namah Shivay'); //Map Map<int, String> planetOrder = { 1:...

Learn More 0 0Dec 30 '24

List in Dart

void main() { print('Om Namah Shivay'); //list List<int> ages = [1, 2, 3, 4, 5, 6, 7, 5,...

Learn More 0 0Dec 30 '24

Loop

void main() { print('Om Namah Shivay'); //loops //1.for loop for (var i = 1; i <= 10; i++) { ...

Learn More 0 0Dec 30 '24

Ternary operater

void main() { print('Om Namah Shivay'); //ternary int age = 16; print(age == 16 ? 'age = 16' :...

Learn More 0 0Dec 30 '24

Nested if-else

void main() { print('Om Namah Shivay'); // nested if -else int age = 16; if (age == 15) { ...

Learn More 0 0Dec 30 '24

Switch Case

void main() { print('Om Namah Shivay'); //switch int age = 16; switch (age) { case 15: ...

Learn More 0 0Dec 30 '24

Data types and varialbles

dart void main() { print("Om Namah Shivay"); //Data Types and Variables ...

Learn More 0 0Dec 29 '24

Syntax of comments

void main() { print('Hello World!'); // this is a single line comment //now i learned about the ...

Learn More 0 0Dec 29 '24

My first Dart program

it's my first code in dart programming language. void main() { print('Hello...

Learn More 0 0Dec 29 '24