mirror of
https://bitbucket.org/FransoletThomas/tablet-app.git
synced 2025-12-06 08:31:19 +00:00
Fix bad level + show image result better
This commit is contained in:
parent
e6e084a77d
commit
e4c956ef41
@ -71,9 +71,8 @@ class _QuizzViewWidget extends State<QuizzViewWidget> {
|
|||||||
log("goodResponses =" + goodResponses.toString());
|
log("goodResponses =" + goodResponses.toString());
|
||||||
var levelToShow;
|
var levelToShow;
|
||||||
var test = goodResponses/quizzDTO.questions.length;
|
var test = goodResponses/quizzDTO.questions.length;
|
||||||
log("test" + test.toString());
|
|
||||||
|
|
||||||
if(0 == test && test < 0.25)
|
if(0 == test || test < 0.25)
|
||||||
levelToShow = quizzDTO.badLevel;
|
levelToShow = quizzDTO.badLevel;
|
||||||
if(test>=0.25 && test < 0.5)
|
if(test>=0.25 && test < 0.5)
|
||||||
levelToShow = quizzDTO.mediumLevel;
|
levelToShow = quizzDTO.mediumLevel;
|
||||||
@ -81,6 +80,7 @@ class _QuizzViewWidget extends State<QuizzViewWidget> {
|
|||||||
levelToShow = quizzDTO.goodLevel;
|
levelToShow = quizzDTO.goodLevel;
|
||||||
if(test>=0.75 && test <= 1)
|
if(test>=0.75 && test <= 1)
|
||||||
levelToShow = quizzDTO.greatLevel;
|
levelToShow = quizzDTO.greatLevel;
|
||||||
|
|
||||||
return Column(
|
return Column(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceAround,
|
mainAxisAlignment: MainAxisAlignment.spaceAround,
|
||||||
crossAxisAlignment: CrossAxisAlignment.center,
|
crossAxisAlignment: CrossAxisAlignment.center,
|
||||||
@ -105,15 +105,16 @@ class _QuizzViewWidget extends State<QuizzViewWidget> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
if (levelToShow.source_ != null)
|
if (levelToShow?.source_ != null)
|
||||||
Container(
|
Container(
|
||||||
height: size.height * 0.2,
|
//height: size.height * 0.2,
|
||||||
width: size.width * 0.25,
|
//width: size.width * 0.25,
|
||||||
margin: EdgeInsets.symmetric(horizontal: 5.0),
|
constraints: BoxConstraints(
|
||||||
|
maxHeight: size.height * 0.25,
|
||||||
|
maxWidth: size.width * 0.25,
|
||||||
|
),
|
||||||
|
alignment: Alignment.center,
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
color: kBackgroundLight,
|
|
||||||
shape: BoxShape.rectangle,
|
|
||||||
borderRadius: BorderRadius.circular(20.0),
|
|
||||||
image: levelToShow.source_ != null ? new DecorationImage(
|
image: levelToShow.source_ != null ? new DecorationImage(
|
||||||
fit: BoxFit.contain,
|
fit: BoxFit.contain,
|
||||||
opacity: 0.85,
|
opacity: 0.85,
|
||||||
@ -121,6 +122,28 @@ class _QuizzViewWidget extends State<QuizzViewWidget> {
|
|||||||
levelToShow.source_,
|
levelToShow.source_,
|
||||||
),
|
),
|
||||||
): null,
|
): null,
|
||||||
|
borderRadius: BorderRadius.all( Radius.circular(50.0)),
|
||||||
|
border: Border.all(
|
||||||
|
color: kBackgroundGrey,
|
||||||
|
width: 1.0,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
child: Container(
|
||||||
|
//borderRadius: BorderRadius.all(Radius.circular(25.0)),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: const Color(0xff7c94b6),
|
||||||
|
image: DecorationImage(
|
||||||
|
image: new NetworkImage(
|
||||||
|
levelToShow.source_,
|
||||||
|
),
|
||||||
|
fit: BoxFit.cover,
|
||||||
|
),
|
||||||
|
borderRadius: BorderRadius.all( Radius.circular(50.0)),
|
||||||
|
border: Border.all(
|
||||||
|
color: kBackgroundGrey,
|
||||||
|
width: 1.0,
|
||||||
|
),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Container(
|
Container(
|
||||||
@ -151,7 +174,7 @@ class _QuizzViewWidget extends State<QuizzViewWidget> {
|
|||||||
child: SingleChildScrollView(
|
child: SingleChildScrollView(
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(15.0),
|
padding: const EdgeInsets.all(15.0),
|
||||||
child: Text(levelToShow.label.firstWhere((translation) => translation.language == appContext.getContext().language).value != null ? levelToShow.label.firstWhere((translation) => translation.language == appContext.getContext().language).value : "", textAlign: TextAlign.center, style: TextStyle(fontSize: kDescriptionSize)),
|
child: levelToShow != null ? Text(levelToShow.label.firstWhere((translation) => translation.language == appContext.getContext().language).value != null ? levelToShow.label.firstWhere((translation) => translation.language == appContext.getContext().language).value : "", textAlign: TextAlign.center, style: TextStyle(fontSize: kDescriptionSize)): Text("No data"),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
@ -320,9 +343,9 @@ class _QuizzViewWidget extends State<QuizzViewWidget> {
|
|||||||
padding: const EdgeInsets.all(8.0),
|
padding: const EdgeInsets.all(8.0),
|
||||||
child: Container(
|
child: Container(
|
||||||
alignment: Alignment.center,
|
alignment: Alignment.center,
|
||||||
child: Text(i.responsesSubDTO[index].label.firstWhere((translation) => translation.language == appContext.getContext().language).value != null ? i.responsesSubDTO[index].label.firstWhere((translation) => translation.language == appContext.getContext().language).value : "", textAlign: TextAlign.center, style: TextStyle(fontSize: kDescriptionSize)),
|
child: Text(i.responsesSubDTO[index].label.firstWhere((translation) => translation.language == appContext.getContext().language).value != null ? i.responsesSubDTO[index].label.firstWhere((translation) => translation.language == appContext.getContext().language).value : "", textAlign: TextAlign.center, style: TextStyle(fontSize: kDescriptionSize, color: i.chosen == index ? Colors.white : Colors.black)),
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
color: i.chosen == index ? Colors.green : kBackgroundLight,
|
color: i.chosen == index ? kTestSecondColor : kBackgroundLight,
|
||||||
shape: BoxShape.rectangle,
|
shape: BoxShape.rectangle,
|
||||||
borderRadius: BorderRadius.circular(10.0),
|
borderRadius: BorderRadius.circular(10.0),
|
||||||
boxShadow: [
|
boxShadow: [
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user