Created
December 12, 2018 17:25
-
-
Save farconada/512765c4426d6a89ba4df1d1e6782976 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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