Skip to content

Commit

Permalink
Add ExcludeSemantics to the backLayer of the Backdrop (#93)
Browse files Browse the repository at this point in the history
Addresses #84.
  • Loading branch information
michdud authored and willlarche committed Aug 22, 2018
1 parent c160f4b commit d214a20
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mdc_100_series/lib/backdrop.dart
Expand Up @@ -224,7 +224,10 @@ class _BackdropState extends State<Backdrop>
return Stack(
key: _backdropKey,
children: <Widget>[
widget.backLayer,
ExcludeSemantics(
child: widget.backLayer,
excluding: _frontLayerVisible,
),
PositionedTransition(
rect: layerAnimation,
child: _FrontLayer(
Expand Down

0 comments on commit d214a20

Please sign in to comment.