flexbox-layout icon indicating copy to clipboard operation
flexbox-layout copied to clipboard

Flexbox layout manager not scrollable

Open lazy-coder-10 opened this issue 3 years ago • 1 comments

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. MicrosoftTeams-image (3)

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 } }

lazy-coder-10 avatar Jul 18 '22 12:07 lazy-coder-10