Skip to content

MDC-104 Flutter: Material Advanced Components (Flutter) - Step 4 #33

@msphotosite

Description

@msphotosite

Widget _buildStack() {
child: Stack(
key: _backdropKey,
children: [
widget.backLayer,
widget.frontLayer,
],
);
}

contains an error.

Replace it with:

Widget _buildStack() {
return Stack(
key: _backdropKey,
children: [
widget.backLayer,
widget.frontLayer,
],
);
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions