Design-Patterns-In-Kotlin icon indicating copy to clipboard operation
Design-Patterns-In-Kotlin copied to clipboard

Design Patterns implemented in Kotlin

Results 12 Design-Patterns-In-Kotlin issues
Sort by recently updated
recently updated
newest added

`class PrintingTextChangedListener : TextChangedListener { private var text = "" override fun onTextChanged(oldText: String, newText: String) { text = "Text is changed: $oldText -> $newText" println(text) // here } }`

Before diving into any of the patterns, readers should be reminded of two fundamental laws in software architecture: 1.Everything is a trade-ff 2."Why is more important than the how" So,...