how does this translate into Kotlin? ``` linearLay...
# getting-started
o
how does this translate into Kotlin?
Copy code
linearLayoutManager = new LinearLayoutManager(context) {
 @Override
 public boolean canScrollVertically() {
  return false;
 }
};
t
Copy code
linearLayoutManager = object:  LinearLayoutManager(context){ .... }
o
I felt so
👍 1
my bad