Ahmed Azzabforazzab.hashnode.net·Apr 8, 2023Dart IsolateDart is a single-threaded programming language, Which means That it can do one thing at a time. It has a single call stack [ one thread == one call stack == one thing at a time ]. Program run piece of code at a time. Let's explain call stack fi...Discuss·13 likes·66 readsFlutter
Sitam SardarfortheDIRone's blogsitam.hashnode.net·Feb 3, 2023Making the Flutter UI: From Fixed to FlexibleLearn how to make responsive screens with Flutter. If you are a Mobile Developer then you must know the importance of making responsive screens for sure. Also, it's a challenge for all of us developers to make screens responsive. Now the question is...Discuss·11 likes·109 readsFlutter
Glory OlaifaforGlory Olaifagloryolaifa.hashnode.net·Feb 28, 2023Variables and Arithmetic in Dart programming language - Road to Mobile DevelopmentDart is an object-oriented programming language created by Google. It's designed to be simple, fast, and flexible, with a focus on building applications for mobile, web, and desktop platforms. Dart is a simple and flexible programming language that's...Discuss·3 likes·125 readsDart
AnzhelikaforFlutter Devflutterdart.hashnode.net·Apr 25, 2023What is Dart?Hi, in this article I want to give you a brief introduction to the Dart programming language. From reading this article, you'll get the general meaning of the Dart and where it is used. Let's jump into the story behind the Dart. Dart is designed by L...Discuss·2 likes·32 reads#dart-for-beginners
Ndukwe Aguforndukweagu.hashnode.net·Apr 22, 2023Simplify HTTP Requests in Flutter with GoOnline PackageBuilding Flutter apps that consume RESTful APIs requires developers to make HTTP requests, parse responses, and handle errors. This can quickly become complex, especially as the app scales and more APIs are integrated. But, with the GoOnline package,...Discuss·50 readsFlutter
Ahmed Azzabforazzab.hashnode.net·Apr 8, 2023Dart IsolateDart is a single-threaded programming language, Which means That it can do one thing at a time. It has a single call stack [ one thread == one call stack == one thing at a time ]. Program run piece of code at a time. Let's explain call stack fi...Discuss·13 likes·66 readsFlutter
Dineth JanithaforManapemanape.hashnode.net·Mar 20, 2023Dart BasicThis video for dart beginners! 1 → Main method The main() function is a top-level function in Dart that initiates the execution of the program. It is the Dart programming language’s most important and crucial feature. In a program, the main() functio...Discuss·3 likes·37 readsDart
Makafui Tsaglifortsmakaay.hashnode.net·Mar 16, 2023Dart - Isolates, Synchronous And Asynchronous WorkflowsDart Isolate is where all the written code in your Dart program runs. Let's call it a factory. A Dart program begins its execution from the file's main function. And the isolate shares the same name as the main function (main isolate). An isolate is ...Discuss#dart language
Makafui Tsaglifortsmakaay.hashnode.net·Mar 11, 2023Dart - Testing, Types And SignificanceTesting involves writing test code that verifies the correctness of your program's behaviour. Testing is an essential part of software development because it helps catch bugs and errors before the code is released to users. In Dart, testing is typica...DiscussTesting
Makafui Tsaglifortsmakaay.hashnode.net·Mar 7, 2023Dart Classes - Constructors, Methods, Getters And SettersClass, Constructor & Instance Classes are like blueprints of information that can be created in one place and accessed and reused in different areas. The initial block of code containing the properties and logic is the class, while the ones reference...Discuss100DaysOfCode
Steve NosseforSteve Nossespartan44th.hashnode.net·Mar 4, 2023Dart 3 in depth: RecordsContext Yeah, Dart is amazing. What I like the most about this language is that it's so easy to use yet so powerful. There were many announcements at Flutter Forward 2023, among which was a new version of Dart: Dart 3. Since I started using Dart in 2...Discuss·297 readsFlutter
Glory OlaifaforGlory Olaifagloryolaifa.hashnode.net·Feb 28, 2023Variables and Arithmetic in Dart programming language - Road to Mobile DevelopmentDart is an object-oriented programming language created by Google. It's designed to be simple, fast, and flexible, with a focus on building applications for mobile, web, and desktop platforms. Dart is a simple and flexible programming language that's...Discuss·3 likes·125 readsDart
Makafui Tsaglifortsmakaay.hashnode.net·Feb 27, 2023Dart - Null Safety, Flow Analysis, Variables And KeywordsDay 4 of my 100-day Flutter learning journey. This blog will cover my understanding of Null Safety and Flow Analysis and other topics under Dart. Null Safety Dart Null Safety is a feature that helps developers write better, more reliable code in the ...Discuss·28 readsNull Safety