I'm using Cubits for state management in my Flutter app.
It is my favourite state-management approach so far.
However, I now want to get a little more complex, and have multiple cubits, controlling different bits of state each (eg. one is for login-related state, another for config/settings state, and another for the main app state).
I'm trying to find an example of how to do multiple cubits and I'm not finding anything.
With the BLoc approach we would use MultiBlocProvider.
Is there an equivalent to the MultiBlocProvider for cubits?
Or, can you point me at a tutorial that demonstrates using multiple cubits in the one app?