For reference, the Anko issue can be described as ...
# language-proposals
e
For reference, the Anko issue can be described as follows:
Copy code
verticalLayout {
  frameLayout {
    lparams(matchParent, matchParent) // Sets a FrameLayout.LayoutParams on this FrameLayout, but we need LinearLayout.LayoutParams
  }.lparams(matchParent, matchParent) // Sets LinearLayout.LayoutParams on this FrameLayout, correct but kind of ugly
}.lparams(matchParent, matchParent) // Who knows what our parent is? We don’t, so we can’t even have this sugar here