Skip to content

Instantly share code, notes, and snippets.

@farconada
Created December 12, 2018 17:25
Show Gist options
  • Save farconada/512765c4426d6a89ba4df1d1e6782976 to your computer and use it in GitHub Desktop.
Save farconada/512765c4426d6a89ba4df1d1e6782976 to your computer and use it in GitHub Desktop.
OverlayEntry _buildOverlayFeedback(BuildContext context, String tituloEvento) {
return OverlayEntry(
builder: (context) => Material(
child: Container(
width: double.infinity,
height: double.infinity,
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Column(
children: <Widget>[
ListTile(
leading: Icon(Icons.sentiment_dissatisfied),
title: Text('No me ha gustado'),
onTap: () {
},
),
ListTile(
leading: Icon(Icons.sentiment_very_satisfied),
title: Text('Muy bien'),
onTap: () {}),
],
),
],
),
),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment