Flutter 2 Crash Course - Part 1 (Bad Jokes App)

Опубликовано: 04 Октябрь 2024
на канале: Laith Academy
8,872
281

In this crash course we will cover the basic of Flutter and the Dart programming language by building a simple Bad Jokes application.

Flutter Doctor Issues and Resources
----------------------------------------------------------

Unable to find bundled Java version:
https://stackoverflow.com/questions/5...


Other Resources:
---------------------------
https://fuelsrv.ca/
https://www.instagram.com/fuelsrv/?hl=en
  / fuelsrv  

Download Flutter on Windows:
   • How to install flutter in windows ste...  

Download Android Studio for Windows:
   • How to Install Android Studio on Wind...  

Download Android Studio for Mac:
   • How to Install Android Studio on Wind...  

FuelSrv Links:
----------------------
https://fuelsrv.com/accounttype
  / fuelsrv  
https://www.instagram.com/fuelsrv/?hl=en

GitHub
_______
https://github.com/harblaith7/Flutter...

Code Snippets
_______________

var _jokes = [
{"question": "What does a baby computer call its father?", "answer": "Data"},
{"question": "What's a pencil with two erasers called?", "answer": "Pointless"},
{"question": "Why is the calendar always scared?", "answer": "Because it's days are numbered"},
{"question": "What do you call a fish with no eye", "answer": "Fsh"},
];

Timeline
--------------

0:00 - What is Flutter
5:16 - Dart Variables
13:50 - Dart Functions
22:05 - Classes and Object Oriented Programming
37:11 - Flutter Download
56:11 - Widgets
1:07:37 - Building the UI
1:18:56 - Styling our App
1:31:00 - Handling State
1:40:16 - Stateful & Stateless Widgets
1:51:45 - Splitting App into Multiple Files
2:01:43 - Private Properties