1
0
Fork 0

No issue - Fixes shadow on top layout

master
Jeff Boek 2020-03-11 21:42:27 -07:00 committed by Emily Kager
parent 74ce62b5c3
commit c862ca93ba
1 changed files with 2 additions and 0 deletions

View File

@ -227,7 +227,9 @@ class HomeFragment : Fragment() {
ConstraintSet().apply {
clone(view.toolbarLayout)
clear(view.bottom_bar.id, BOTTOM)
clear(view.bottomBarShadow.id, BOTTOM)
connect(view.bottom_bar.id, TOP, PARENT_ID, TOP)
connect(view.bottomBarShadow.id, TOP, view.bottom_bar.id, BOTTOM)
connect(view.bottomBarShadow.id, BOTTOM, PARENT_ID, BOTTOM)
applyTo(view.toolbarLayout)