Created
March 8, 2020 14:36
-
-
Save geeksilva97/a57cef216958bf2b95c532a4570a99eb to your computer and use it in GitHub Desktop.
Home Screen
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
import 'package:flutter/material.dart'; | |
import 'package:rating_dialog/src/widgets/rating_dialog.dart'; | |
class HomePage extends StatefulWidget { | |
@override | |
_HomePageState createState() => _HomePageState(); | |
} | |
class _HomePageState extends State<HomePage> { | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
appBar: AppBar( | |
title: Text('Rating Dialog'), | |
), | |
body: Center( | |
child: RaisedButton( | |
child: Text('Rate'), | |
onPressed: () async { | |
int stars = await showDialog( | |
context: context, | |
builder: (_) => RatingDialog() | |
); | |
if(stars == null) return; | |
print('Selected rate stars: $stars'); | |
}, | |
), | |
), | |
); | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment