Skip to content

Instantly share code, notes, and snippets.

@azamsharp
Created December 28, 2020 17:40
Show Gist options
  • Save azamsharp/8a0ed412117bd1230a0d260429c837a8 to your computer and use it in GitHub Desktop.
Save azamsharp/8a0ed412117bd1230a0d260429c837a8 to your computer and use it in GitHub Desktop.
class Rating extends StatefulWidget {
final int maximumRating;
Rating([this.maximumRating = 5]);
@override
_Rating createState() => _Rating();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment