Is it possible to toggle the primaryContentViewController dimming when the drawer is partially revealed?, I know it gets dimmed when in .open. I'm looking to be able to do something like this:
let pulley = PulleyViewController()
pulley.setDrawerPosition(.partiallyRevealed)
pulley.dimPrimaryContent = true
Having a property that toggles dimming would be great, another potential solution would be for the PulleyDrawerViewControllerDelegate to have a openDrawerHeight(bottomSafeArea:) method that provides height for the .open position this way we could make it the desired size with dimming.
Is it possible to toggle the
primaryContentViewControllerdimming when the drawer is partially revealed?, I know it gets dimmed when in.open. I'm looking to be able to do something like this:Having a property that toggles dimming would be great, another potential solution would be for the
PulleyDrawerViewControllerDelegateto have aopenDrawerHeight(bottomSafeArea:)method that provides height for the.openposition this way we could make it the desired size with dimming.