Skip to content

Instantly share code, notes, and snippets.

@geeksilva97
Created March 8, 2020 14:36
Show Gist options
  • Save geeksilva97/a57cef216958bf2b95c532a4570a99eb to your computer and use it in GitHub Desktop.
Save geeksilva97/a57cef216958bf2b95c532a4570a99eb to your computer and use it in GitHub Desktop.
Home Screen
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