placeholder is just a named part of the builder, s...
# ktor
o
placeholder is just a named part of the builder, so if you want to make it pluggable, you will need to do something else I have another thing which I call “implants” that works like this:
Copy code
implant.attachTo(profileView.profilePlate) { person: Person ->
            with(placeWidgets) {
                iconList {
                    iconItem("map-marker") { linkPath(person.place) }
                }
            }
        }
and in the view
Copy code
implant.insert(profilePlate, this, person)