You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
310 lines
9.5 KiB
Dart
310 lines
9.5 KiB
Dart
import 'package:appinio_swiper/appinio_swiper.dart';
|
|
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:mohem_flutter_app/classes/colors.dart';
|
|
import 'package:mohem_flutter_app/classes/decorations_helper.dart';
|
|
import 'package:mohem_flutter_app/config/routes.dart';
|
|
import 'package:mohem_flutter_app/extensions/widget_extensions.dart';
|
|
import 'package:mohem_flutter_app/models/marathon_question_model.dart';
|
|
import 'package:mohem_flutter_app/ui/marathon/marathon_provider.dart';
|
|
import 'package:provider/provider.dart';
|
|
|
|
List<bool> isSelectedOptions = [
|
|
false,
|
|
false,
|
|
false,
|
|
false,
|
|
];
|
|
|
|
class QuestionCard extends StatefulWidget {
|
|
final MarathonProvider provider;
|
|
|
|
const QuestionCard({Key? key, required this.provider}) : super(key: key);
|
|
|
|
@override
|
|
State<QuestionCard> createState() => _QuestionCardState();
|
|
}
|
|
|
|
class _QuestionCardState extends State<QuestionCard> {
|
|
final List<CardContent> questionCards = <CardContent>[];
|
|
|
|
@override
|
|
void initState() {
|
|
_loadCards();
|
|
super.initState();
|
|
}
|
|
|
|
void _loadCards() {
|
|
for (DummyQuestionModel question in questions) {
|
|
questionCards.add(
|
|
CardContent(
|
|
question: question,
|
|
provider: widget.provider,
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return CupertinoPageScaffold(
|
|
child: SizedBox(
|
|
height: 440,
|
|
width: double.infinity,
|
|
child: Consumer<MarathonProvider>(
|
|
builder: (BuildContext context, MarathonProvider provider, _) {
|
|
return AppinioSwiper(
|
|
padding: EdgeInsets.zero,
|
|
isDisabled: true,
|
|
controller: provider.swiperController,
|
|
unswipe: (int index, AppinioSwiperDirection direction) {},
|
|
cards: questionCards,
|
|
onSwipe: (int index, AppinioSwiperDirection direction) {
|
|
if (direction == AppinioSwiperDirection.left) {
|
|
provider.startTimer(context);
|
|
}
|
|
},
|
|
);
|
|
},
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class CardContent extends StatelessWidget {
|
|
final DummyQuestionModel question;
|
|
final MarathonProvider provider;
|
|
|
|
const CardContent({
|
|
Key? key,
|
|
required this.question,
|
|
required this.provider,
|
|
}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.circular(10),
|
|
color: CupertinoColors.white,
|
|
boxShadow: <BoxShadow>[
|
|
BoxShadow(
|
|
color: CupertinoColors.systemGrey.withOpacity(0.2),
|
|
spreadRadius: 3,
|
|
blurRadius: 7,
|
|
offset: const Offset(0, 3),
|
|
)
|
|
],
|
|
),
|
|
alignment: Alignment.center,
|
|
child: Column(
|
|
children: <Widget>[
|
|
Container(
|
|
height: 78,
|
|
width: double.infinity,
|
|
decoration: const BoxDecoration(
|
|
gradient: LinearGradient(
|
|
transform: GradientRotation(.83),
|
|
begin: Alignment.topRight,
|
|
end: Alignment.bottomLeft,
|
|
colors: <Color>[
|
|
MyColors.gradiantEndColor,
|
|
MyColors.gradiantStartColor,
|
|
],
|
|
),
|
|
borderRadius: BorderRadius.only(
|
|
topLeft: Radius.circular(10),
|
|
topRight: Radius.circular(10),
|
|
),
|
|
),
|
|
child: const Center(
|
|
child: Padding(
|
|
padding: EdgeInsets.symmetric(horizontal: 13),
|
|
child: Text(
|
|
"What is the capital of Saudi Arabia?",
|
|
style: TextStyle(
|
|
color: MyColors.white,
|
|
fontSize: 16,
|
|
fontWeight: FontWeight.w600,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
AnswerContent(question: question, provider: provider),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class AnswerContent extends StatefulWidget {
|
|
final DummyQuestionModel question;
|
|
final MarathonProvider provider;
|
|
|
|
const AnswerContent({Key? key, required this.question, required this.provider}) : super(key: key);
|
|
|
|
@override
|
|
State<AnswerContent> createState() => _AnswerContentState();
|
|
}
|
|
|
|
class _AnswerContentState extends State<AnswerContent> {
|
|
void updateOption(int index, bool value) {
|
|
isSelectedOptions[0] = false;
|
|
isSelectedOptions[1] = false;
|
|
isSelectedOptions[2] = false;
|
|
isSelectedOptions[3] = false;
|
|
isSelectedOptions[index] = value;
|
|
setState(() {});
|
|
}
|
|
|
|
Decoration getContainerColor(int index) {
|
|
if (!isSelectedOptions[index]) {
|
|
return MyDecorations.getContainersDecoration(MyColors.greyF7Color);
|
|
}
|
|
if (isSelectedOptions[index] && context.watch<MarathonProvider>().start > 0) {
|
|
return MyDecorations.getContainersDecoration(MyColors.yellowColorII);
|
|
}
|
|
return MyDecorations.getContainersDecoration(
|
|
isSelectedOptions[index] ? MyColors.greenColor : MyColors.greyF7Color,
|
|
);
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
padding: const EdgeInsets.all(13),
|
|
decoration: const BoxDecoration(
|
|
color: MyColors.kWhiteColor,
|
|
borderRadius: BorderRadius.only(
|
|
bottomLeft: Radius.circular(10),
|
|
bottomRight: Radius.circular(10),
|
|
),
|
|
),
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: <Widget>[
|
|
InkWell(
|
|
onTap: () {
|
|
if (widget.provider.currentQuestionNumber == 9) {
|
|
widget.provider.cancelTimer();
|
|
widget.provider.resetValues();
|
|
Navigator.pushReplacementNamed(
|
|
context,
|
|
AppRoutes.marathonWinnerSelection,
|
|
);
|
|
return;
|
|
}
|
|
updateOption(0, true);
|
|
},
|
|
child: Container(
|
|
alignment: Alignment.centerLeft,
|
|
decoration: getContainerColor(0),
|
|
child: Center(
|
|
child: Text(
|
|
widget.question.opt1!,
|
|
style: TextStyle(
|
|
color: isSelectedOptions[0] ? MyColors.white : MyColors.darkTextColor,
|
|
fontWeight: FontWeight.w600,
|
|
fontSize: 16,
|
|
),
|
|
).paddingOnly(top: 17, bottom: 17),
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(height: 15),
|
|
InkWell(
|
|
onTap: () {
|
|
if (widget.provider.currentQuestionNumber == 9) {
|
|
widget.provider.cancelTimer();
|
|
widget.provider.resetValues();
|
|
Navigator.pushReplacementNamed(
|
|
context,
|
|
AppRoutes.marathonWinnerSelection,
|
|
);
|
|
return;
|
|
}
|
|
updateOption(1, true);
|
|
},
|
|
child: Container(
|
|
alignment: Alignment.centerLeft,
|
|
decoration: getContainerColor(1),
|
|
child: Center(
|
|
child: Text(
|
|
widget.question.opt2!,
|
|
style: TextStyle(
|
|
color: isSelectedOptions[1] ? MyColors.white : MyColors.darkTextColor,
|
|
fontWeight: FontWeight.w600,
|
|
fontSize: 16,
|
|
),
|
|
).paddingOnly(top: 17, bottom: 17),
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(height: 15),
|
|
InkWell(
|
|
onTap: () {
|
|
if (widget.provider.currentQuestionNumber == 9) {
|
|
widget.provider.cancelTimer();
|
|
widget.provider.resetValues();
|
|
Navigator.pushReplacementNamed(
|
|
context,
|
|
AppRoutes.marathonWinnerSelection,
|
|
);
|
|
return;
|
|
}
|
|
updateOption(2, true);
|
|
},
|
|
child: Container(
|
|
alignment: Alignment.centerLeft,
|
|
decoration: getContainerColor(2),
|
|
child: Center(
|
|
child: Text(
|
|
widget.question.opt3!,
|
|
style: TextStyle(
|
|
color: isSelectedOptions[2] ? MyColors.white : MyColors.darkTextColor,
|
|
fontWeight: FontWeight.w600,
|
|
fontSize: 16,
|
|
),
|
|
).paddingOnly(top: 17, bottom: 17),
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(height: 15),
|
|
InkWell(
|
|
onTap: () {
|
|
if (widget.provider.currentQuestionNumber == 9) {
|
|
widget.provider.cancelTimer();
|
|
widget.provider.resetValues();
|
|
Navigator.pushReplacementNamed(
|
|
context,
|
|
AppRoutes.marathonWinnerSelection,
|
|
);
|
|
return;
|
|
}
|
|
updateOption(3, true);
|
|
},
|
|
child: Container(
|
|
alignment: Alignment.centerLeft,
|
|
decoration: getContainerColor(3),
|
|
child: Center(
|
|
child: Text(
|
|
widget.question.opt3!,
|
|
style: TextStyle(
|
|
color: isSelectedOptions[3] ? MyColors.white : MyColors.darkTextColor,
|
|
fontWeight: FontWeight.w600,
|
|
fontSize: 16,
|
|
),
|
|
).paddingOnly(top: 17, bottom: 17),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|