hey guys, I know it’s silly but is there something...
# getting-started
o
hey guys, I know it’s silly but is there something neater than this 🙂
Copy code
fromPriceValueET.typeface = Typeface.createFromAsset(
            assets, "fonts/Sofia Pro Bold.otf"
        )

        toPriceValueET.typeface = Typeface.createFromAsset(
            assets, "fonts/Sofia Pro Bold.otf"
        )

        budgetCurrencyTV.typeface = Typeface.createFromAsset(
            assets, "fonts/Sofia Pro Bold.otf"
        )
d
Copy code
arrayOf(fromPriceValueET, toPriceValueET, budgetCurrencyTV).forEach {
    it.typeface = Typeface.createFromAsset(...)
}
Should've replied to your other message
o
ahhh right right
thank you