Mayursinh Parmarmayursinhdevblog.hashnode.dev·May 1, 2024Topic: 8 Understanding Mixins in DartHello developers! Today, we're going to talk about mixin classes. Mixin classes are super handy for blending different class hierarchies, giving you a more adaptable and modular way to organize your code. When you use mixin classes in your programmin...Learn Flutter: Basic to AdvanceFlutter
Chris Bathblog.bluurr.com·Sep 9, 2023Jackson - Controlling What You Don't OwnThis post explores how to customise JSON output using several Jackson features and Spring Boot . Even when you can't modify class definitions, learn valuable techniques like mixin and delegates . Use case We have the following class definition: publi...11 likes·82 readsjackson
Srikanth Anantharamblog.srikanth.one·Aug 31, 2023Converting any class into a Singleton class in C++Singleton is one of the creational design patterns. A singleton class has only one instance and provides a global point of access to that instance. It's commonly used when you want to restrict the instantiation of a class to a single object, which ca...2 likes·406 readsC++
Ravi Patelravipatel.hashnode.dev·Jul 28, 2023Boosting Flutter App Development with Mixins: Code Reuse and Composability ExplainedFlutter is a powerful framework for building cross-platform mobile applications, enabling developers to create beautiful and performant UIs with ease. One of the key principles in Flutter development is code reuse and composability. In this blog post...66 readsflutternik
Melvin Salasmelvinsalas.dev·Mar 1, 2023What is a mixin?The term "mixin" comes from object-oriented programming and is used in several programming languages besides Dart. It originated in the 1980s as a technique for reusing code between classes in languages such as Smalltalk and was later adopted by othe...27 readsFluttermixin
Mustafa Dalgasft.hashnode.dev·Nov 22, 2021How to create multiple mixins in one file and using specific mixins in vue jsWhen we have features such as method, computed or watch, that we want to use in more than one component or view, we can create and use mixins to avoid repetitive codes. In small projects, we can create and import a mixin file for each repetitive feat...Vue.jsmixins