You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my app, due to the chosen colors, the front- and back layer are not very clearly distinguishable. Therefore, I would like to introduce a BoxShadow on the front layer.
If I change the existing frontLayerElevation on BackdropScaffold, it doesn't seem to have any effect on shadow.
I would expect the shadow to show on top of the front layer, but it is by default showing below it, where it is not visible.
@daadu do you think we could add that? I will prepare a PR...
The text was updated successfully, but these errors were encountered:
If I additionally set the frontLayerBackgroundColor to Colors.transparent, then I can see something happening:
If I now set the elevation e.g. to 1:
The shadow gets less blurred, which means the elevation is applied correctly actually.
So, when my front layer is white, the shadow is hidden below it, because the shadow is displayed (like always in Material Design) on the bottom-right of the widget.
My goal would be to have the possibility for setting the shadow offset to be e.g. Offset(0, -4) in order to show the shadow on top of the front layer.
In my app, due to the chosen colors, the front- and back layer are not very clearly distinguishable. Therefore, I would like to introduce a
BoxShadow
on the front layer.If I change the existing
frontLayerElevation
onBackdropScaffold
, it doesn't seem to have any effect on shadow.I would expect the shadow to show on top of the front layer, but it is by default showing below it, where it is not visible.
@daadu do you think we could add that? I will prepare a PR...
The text was updated successfully, but these errors were encountered: