flexbox-layout
flexbox-layout copied to clipboard
Flexbox layout manager not scrollable
Flexbox layout manager is not scrollable as you can see in the following image I want the last row to be centered with scrollable. The focus should be the center of the view.

Using the following layout manager for recycler view.
private fun getLayoutManager(recyclerView: RecyclerView): RecyclerView.LayoutManager? { // return LinearLayoutManager(requireContext(),RecyclerView.HORIZONTAL,false) return FlexboxLayoutManager(context).apply { alignItems = AlignItems.CENTER flexDirection = FlexDirection.ROW flexWrap = FlexWrap.NOWRAP } }