In my Composable function I am not able to get ref...
# compose
s
In my Composable function I am not able to get reference to Context ? I saw we can use AmbeintContext.current in composables but still no recommendation appears when I type and after typing the whole reference it errors and says not found ?
a
It is renamed to
LocalContext.current
.
s
ah, thanks I was looking for it.