Is it possible to set up spaces (margin/padding) between different adapters in ConcatAdapter? I have just a simple sample of code, like below, but according to the design I have to add margin exactly between different adapters (not holder items in one adapter). What is the best way to achieve that?
val firstAdapter: FirstAdapter = …
val secondAdapter: SecondAdapter = …
val thirdAdapter: ThirdAdapter = …
val concatAdapter = ConcatAdapter(firstAdapter, secondAdapter, thirdAdapter)
recyclerView.adapter = concatAdapter

I managed to do something like this:
ViewHolder: