Jacob Applin
05/24/2019, 10:05 PMprivate const val BUTTON_HEIGHT_DP = 40
object Primary : Property<Button> by CompositeProperty(
PrimarySmallBold,
TextColor(android.R.color.white),
Caps,
Size(height = BUTTON_HEIGHT_DP.dp, width = MatchParent),
Background(R.drawable.primary_button_selectable),
Shadowless
)
object Secondary : Property<Button> by CompositeProperty(
AccentSmallBold,
Caps,
Ripple,
Size(height = BUTTON_HEIGHT_DP.dp, width = MatchParent)
)