Panagiotis Triantafyllou

minor fix

......@@ -597,6 +597,9 @@ public class HomeActivity extends Activity implements View.OnClickListener, Coup
View bottomSheet = bottomSheetDialog.findViewById(com.google.android.material.R.id.design_bottom_sheet);
if (bottomSheet != null) {
bottomSheet.post(() -> {
// Disable fitsSystemWindows so the BottomSheet doesn't add nav bar padding automatically
bottomSheet.setFitsSystemWindows(false);
int screenHeight = getResources().getDisplayMetrics().heightPixels;
ViewGroup.LayoutParams lp = bottomSheet.getLayoutParams();
lp.height = screenHeight;
......