Add padding to bottom of selection recycler.

This commit is contained in:
Alex Hart 2022-10-07 14:20:10 -03:00 committed by Greyson Parrelli
parent be98ff3508
commit 3de75f48cf

View file

@ -9,6 +9,7 @@ import androidx.fragment.app.Fragment
import androidx.fragment.app.viewModels
import androidx.navigation.fragment.findNavController
import com.google.android.material.button.MaterialButton
import org.signal.core.util.dp
import org.thoughtcrime.securesms.ContactSelectionListFragment
import org.thoughtcrime.securesms.R
import org.thoughtcrime.securesms.contacts.ContactsCursorLoader
@ -148,7 +149,9 @@ abstract class BaseStoryRecipientSelectionFragment : Fragment(R.layout.stories_b
currentSelection = emptyList(),
displaySelectionCount = false,
displayChips = true,
checkboxResource = checkboxResource
checkboxResource = checkboxResource,
recyclerPadBottom = 76.dp,
recyclerChildClipping = false
)
contactSelectionListFragment.arguments = arguments.toArgumentBundle()