pageDropShadow property

BoxShadow? pageDropShadow
final

Drop shadow for the page.

The default is:

BoxShadow(
  color: Colors.black54,
  blurRadius: 4,
  spreadRadius: 0,
  offset: Offset(2, 2))

If you need to remove the shadow, set this to null. To customize more of the shadow, you can use pageBackgroundPaintCallbacks to paint the shadow manually.

Implementation

final BoxShadow? pageDropShadow;