How to use segue in storyboard when required storyboard is in Swift package?

Im using a swift package which has textfield xib, some storyboards as resources. My question here is I'm trying to present a viewController through segue which is in swift Package. In storyboard reference I have given the storyBoard name "Login" and given the Bundle as "Sample". while calling performSegue Im getting crash saying that Login storyboard not present in NSBundle. it automatically taking the NSBundle not the Sample_Sample.module. How to solve this?

In Swift package storyboard I have unchecked Inherit Module from Target in login storyboard and added Sample in Module name . still no use.

Found answer here. We need to load the bundle first in order to use it in Storyboard.

https://stackoverflow.com/questions/58000140/swift-package-manager-storyboard-bundle

How to use segue in storyboard when required storyboard is in Swift package?
 
 
Q