Using Anko DSL, I've found that 4 space indentatio...
# codingconventions
m
Using Anko DSL, I've found that 4 space indentation is too big, and use 2 space only with DSL. What do you think about it?
Copy code
UI {
  coordinatorLayout {
    verticalLayout {
      relativeLayout {
        ...
      }
      textView(”<3 Kotlin”)
      floatingActionButton {
        onClick {
          ...
        }
      }
    }
  }
}
👎 3
👍 3