I have switched from Material 2 to Material 3 in my android compose project :
I have this dependencie which is the latest stable one :
implementation ("androidx.compose.material3:material3:1.0.1")
As mention in the docs i should be able to import and use the ModalBottomSheet :
But i get unresolved reference when importing :
import androidx.compose.material3.ModalBottomSheet
All my others M3 components are fine.
Can anyone help me on how I can import ModalBottomSheet without problem ?