I was using `BottomAppBarDefaults.FloatingActionBu...
# compose
t
I was using
BottomAppBarDefaults.FloatingActionButton
which was added in
material3:1.0.0-alpha14
but it's gone in
alpha15
with no mentions in the changelog. Does anyone knows why?
I imagine now it needs to be used like this?
Copy code
FloatingActionButton(
    elevation =  BottomAppBarDefaults.BottomAppBarFabElevation,
    onClick = { /*TODO*/ }
) {}