Joseph MindoforMindo's Blogmindo.hashnode.net·Nov 14, 2022Classes in DartDart is a language that is defined as being Object Oriented, but what does this mean exactly. In this article we will learn about Object Oriented Programming, what it is and how it is incorporated into Dart. We will also see how to create and use cla...Discuss·48 likes·257 reads#dart-for-beginners
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
Bukoye Olaniyiforradiantcodes.hashnode.net·Feb 25, 2023Mastering Dart: The First Step to Building Flutter AppsFlutter has become a popular choice for building cross-platform mobile applications, but did you know that learning Dart is a crucial first step? A lot of Flutter developer tends to ignore it. In this article, we'll explore why mastering Dart is esse...Discuss·10 likes·43 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
Kelechi ObasiforJustifiedTech Nuggetsjustifiedtech.hashnode.net·Mar 27, 2023Dart Streams ExplainedDart is a modern, object-oriented programming language that was designed by Google for client-side and server-side development. One of the key features of Dart is its support for asynchronous programming, which is made possible through its built-in S...DiscussMobile Development
Sourav MandalforSourav Mandal's blogsourav091.hashnode.net·Mar 23, 2023Difference between "var" and "dynamic" type in Dart?If a variable is declared as dynamic, its type can change over time. dynamic a = 'abc'; //initially it's a string a = 123; //then we assign an int value to it a = true; //and then a bool If you declare a variable as a var, once the assigned type can...Discuss·4 likes·39 readsFlutter
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 9, 2023Dart Libraries - Private Fields , Import, Export, Part & Part ofOn day 8 of my 100-day Flutter learning journey, I will write about my understanding of Dart libraries and other topics under that heading. The words package and project, file and library will be interchanged throughout this post; whenever I use any ...DiscussDart
Makafui Tsaglifortsmakaay.hashnode.net·Mar 4, 2023Operators And Flow StatementsOn day 6 of 100 days of flutter, I learned about operators and flow statements. This blog covers my understanding of some of what I learned. Operators Operators in Dart are functions all on their own. There are many of them. Dart operators are all un...DiscussDart
Makafui Tsaglifortsmakaay.hashnode.net·Mar 1, 2023DART Built-In Types And FunctionsBuilt-in types are defined as types found in Dart’s SDK core folder. They are termed built-in because they come by default in every Dart project. There are various built-in Dart types. We will explore some of them, like the number, boolean, and strin...DiscussDart
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
Bukoye Olaniyiforradiantcodes.hashnode.net·Feb 25, 2023Mastering Dart: The First Step to Building Flutter AppsFlutter has become a popular choice for building cross-platform mobile applications, but did you know that learning Dart is a crucial first step? A lot of Flutter developer tends to ignore it. In this article, we'll explore why mastering Dart is esse...Discuss·10 likes·43 readsDart
Makafui Tsaglifortsmakaay.hashnode.net·Feb 23, 2023Dart - Project Components, Packages & Running a Dart ApplicationDay 2 of my 100-day Flutter learning journey This blog will cover my understanding of what I've learned thus far. Let's get in. DART PROJECT COMPONENTS A Dart Project consists of various folders and files, which can be grouped into Dart Packages, Lib...Discuss·41 readsDart