Chat GPT ...
# compose
h
Chat GPT The issue seems to be related to setting the
ViewModelStore
before calling the
setGraph
method in the
NavController
. In your
MainActivity
, you're creating a
ViewModelStore
but not setting it correctly for the
NavController
. . Your
MainActivity
sets up the
ViewModelStore
before calling the root navigation graph. The issue might lie within the
RootNavigationGraph
composable or the navigation setup within it. Ensure that within
RootNavigationGraph
, you're not performing any navigation-related actions or calling
setGraph
on the
NavController
before setting the
ViewModelStore
.