2dxgujun / Kpan

:four_leaf_clover:Kotlin wrapper around SpannableStringBuilder to bring modern API
Apache License 2.0
105 stars 9 forks source link

horizontal spacing #8

Open 2dxgujun opened 6 years ago

2dxgujun commented 6 years ago
vOfficialCommunity.vText.text = span {
  communities.forEachIndexed { i, community ->
    image(getDrawable(community)!!) {
    }
    // TODO Kpan horizontal spacing
    if (i < communities.size - 1) {
      +"        "
    }
  }
}