this is only true on one case, if you've configured `SharedFlow` to work like a `StateFlow` plus making the`SharedFlow` with a `replay` of 0
- if you've a `replay` of 1 (which is identical `StateFlow`), the value emitted during configuration change will not be dropped since it will be replayed to the new subscribers (Activity/Fragment in our case)