Created
August 4, 2020 13:57
-
-
Save ravindu9701/e54b84c26bddb9dca13685fdc2b64994 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
class PredictionWidget extends StatelessWidget { | |
final List<Prediction> predictions; | |
const PredictionWidget({Key key, this.predictions}) : super(key: key); | |
Widget _numberWidget(int num, Prediction prediction) { | |
return Column( | |
children: <Widget>[ | |
Text( | |
'$num', | |
style: TextStyle( | |
fontSize: 60, | |
fontWeight: FontWeight.bold, | |
color: prediction == null | |
? Colors.black | |
: Colors.blue.withOpacity( | |
(prediction.confidence * 2).clamp(0, 1).toDouble(), | |
), | |
), | |
), | |
Text( | |
'${prediction == null ? '' : prediction.confidence.toStringAsFixed(3)}', | |
style: TextStyle( | |
fontSize: 12, | |
), | |
) | |
], | |
); | |
} | |
List<dynamic> getPredictionStyles(List<Prediction> predictions) { | |
List<dynamic> data = [ | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null, | |
null | |
]; | |
predictions?.forEach((prediction) { | |
data[prediction.index] = prediction; | |
}); | |
return data; | |
} | |
@override | |
Widget build(BuildContext context) { | |
var styles = getPredictionStyles(this.predictions); | |
return Column( | |
children: <Widget>[ | |
Row( | |
mainAxisAlignment: MainAxisAlignment.spaceEvenly, | |
children: <Widget>[ | |
for (var i = 0; i < 5; i++) _numberWidget(i, styles[i]) | |
], | |
), | |
Row( | |
mainAxisAlignment: MainAxisAlignment.spaceEvenly, | |
children: <Widget>[ | |
for (var i = 5; i < 10; i++) _numberWidget(i, styles[i]) | |
], | |
) | |
], | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment