Upgrade to Pro — share decks privately, control downloads, hide ads and more …

CodeMobile 2018 - Implementing a design languag...

CodeMobile 2018 - Implementing a design language in Android

Carrie Hall

April 04, 2018
Tweet

Other Decks in Programming

Transcript

  1. carrie_l_hall data class CompactListItemViewModel( val lineOne: String, val lineTwo: String,

    val followCount: Int, val isFollowing: Boolean, val isPro: Boolean, val image: Bitmap ) {} components
  2. carrie_l_hall data class CompactListItemViewModel( val lineOne: String = "", val

    lineTwo: String = "", val followCount: Int, val isFollowing: Boolean = false, val isPro: Boolean = false, val image: Bitmap = null ) {} components