[SOLVED} How do I set inside Scaffold - bottomAppB...
# compose
c
[SOLVED} How do I set inside Scaffold • bottomAppBar + FAB As they are Overlapping or even better (FAB insert into bottomBar)
At the moment I can only select between: • FabPosition.End • FabPosition.Center
Copy code
Scaffold(
    bottomBar = {
        BottomAppBar(backgroundColor = Color.Gray) {
            ....
        }
    },
    floatingActionButton = {
        FloatingActionButton( onClick = { /*TODO*/ }) {
            Icon(Icons.Filled.Add, "")

        }
    },
    floatingActionButtonPosition = FabPosition.Center
) {
....
}
Found the way There is another property to set inside Scaffold
Copy code
isFloatingActionButtonDocked = true,
👍 1