{};

Who will build the next Instagram?

Maybe... You!

Not only Instagram, but every app you have in your phone or laptop are build from codes.
Engineers who writes these codes, earn on an average $150k year. Not joking

D
dumb_button.dart
1
ElevatedButton(
2
onPressed: () {
3
// You need to learn coding to make this button do something
4
},
5
style: ElevatedButton.styleFrom(
6
backgroundColor: const Color(0xFF007BFF), // primary blue color
7
),
8
child: const Text(
9
"Click Me",
10
style: TextStyle(
11
color: Colors.white,
12
),
13
),
14
);
Scroll to Top