Elucian MoiseforProgramming Languagessagecode.hashnode.dev·Nov 19, 2023Dart: ObjectsHere is an overview of Dart's object-oriented features (OOP): Dart is an object-oriented language like Java, C++, etc. It supports all the OOP concepts like classes, inheritance, abstraction, encapsulation, polymorphism, etc. Classes: Dart uses cla...DiscussDart & FlutterDart
Elucian MoiseforProgramming Languagessagecode.hashnode.dev·Nov 18, 2023Dart: Flow ControlFlow control statements allow a program to execute instructions conditionally or repeatedly based on inputs or conditions. They are crucial for Turing complete languages. The main flow control statements are: If-else: Allows conditional execution of...DiscussDart
James Mfon Fridaydawn.hashnode.dev·Nov 3, 2023Mastering Dart Classes: A Comprehensive GuideIntroduction A class serves as a template for organizing and encapsulating information or logic, allowing you to define the core logic in one central location for reuse. This fundamental template of logic is referred to as a "class," while the indivi...Discuss·5 likes·47 readsDart
James Mfon Fridaydawn.hashnode.dev·Nov 1, 2023Understanding Dart Variables and Data TypesDart is a versatile and modern programming language known for its ability to create web and mobile applications. Knowing variables and data types is essential as you explore the world of Dart. Just like in any programming language, variables act as t...Discuss·20 likesDart
Abir Sarkargoldflake.hashnode.dev·Oct 18, 2023Understanding Mixins in DartIntroduction One amazing feature of Dart is its mixins. They enable us to reuse code sequences between classes. We can inherit methods and properties from several sources, into a specific class. I will explain mixins, their syntax, and their uses in ...DiscussDart
REREU LEMEINkhaled4cus.hashnode.dev·Oct 2, 2023PRO's & Cons in DartDart: final vs const This document aims to clarify the differences between final and const in Dart programming language. final final is used to declare variables whose values cannot be changed after initialization. A final variable can be assigned ...Discuss·1 like#dart-for-beginners
Yash Kadiyayashgk.hashnode.dev·Sep 14, 2023Discover Dart: Your Coding Journey BeginsWant to start a new journey in programming? Or Want to add a new programming language to your bucket? Learning Dart will make you stand out in the crowd! How? Let's Discover! The Intro Dart is an open-source, general-purpose programming language deve...Discuss·5 likes·33 readsDart
Isaí Arellanoisai-arellano.com·Jul 25, 2023Ruta de aprendizaje para crear aplicaciones móviles con Flutter - Parte 1:Esta serie está enfocada en personas que apenas están entrando en el mundo de la programación y quieren enfocarse en programación móvil, les estaré dando desde las bases, hasta que comprendan como pueden llevar una aplicación de cero a producción, es...Discuss·191 readsAprende a crear aplicaciones con FlutterFlutter
Biplob Hossain Sheikhbiplobhossainsheikh.hashnode.dev·Jul 14, 2023Building a Dialog Box App with FlutterIn this tutorial, we will walk through the process of building a dialog box app using Flutter. The app will allow users to input text into a dialog box and display the entered text on the main screen. Prerequisites Before getting started, make sure y...Discussalert notification
Brett Suttonbrettsutton.hashnode.dev·Jun 1, 2023The Dart Side Blog by OnePub - When not to use Dart RecordsWith the release of Dart 3.0, there has been a lot of excitement and articles around the new Records feature. Like any new hammer, everyone now sees everything as a nail or in this case, a reason to use the new Records type. To provide a little balan...DiscussDart