Hello Everyone i have one scenario i have one lib...
# compose
n
Hello Everyone i have one scenario i have one library which is called as UI library in which i create common UI which is reusable for entire project lets say i have one component where i can search country using XML approach I will create one XML(search_listing_view.xmml) for listing country for recyclerview layout and another xml(search_layout.xml) where i am adding recyclererView and on top i am adding Search Field for filter now in contact details library i will use search field override XML if i want to change UI of search_listing_view.xml then i will create xml file with same name in contact details library then in xml i will change listing View How can i achieve overriding UI in Compose?
a
On compose the
SearchField
would be a param (slot) of a bigger composables, with default implementation relying on your impl
1