Jan Steuer
Results
1
issues of
Jan Steuer
I suppose that the usage example of [Observer/Listener](https://github.com/dbacinski/Design-Patterns-In-Kotlin#observer--listener) should be this: ``` kotlin val textView = TextView().apply { listeners.add(PrintingTextChangedListener()) } with(textView) { text = "Lorem ipsum" text = "dolor sit...