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'; | |
class StarDisplayWidget extends StatelessWidget { | |
final int value; | |
final Widget filledStar; | |
final Widget unfilledStar; | |
const StarDisplayWidget({ | |
Key key, | |
this.value = 0, |