You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.2 KiB
73 lines
2.2 KiB
import 'package:flutter/material.dart';
|
|
|
|
import 'package:velocity_x/velocity_x.dart';
|
|
|
|
import 'package:aku_new_community/utils/headers.dart';
|
|
import 'package:aku_new_community/widget/buttons/bee_single_check.dart';
|
|
|
|
class QuestionnaireTruefalse extends StatefulWidget {
|
|
final String? title;
|
|
final int? selected;
|
|
final Function(int id)? onPressed;
|
|
|
|
QuestionnaireTruefalse({Key? key, this.title, this.selected, this.onPressed})
|
|
: super(key: key);
|
|
|
|
@override
|
|
_QuestionnaireTruefalseState createState() => _QuestionnaireTruefalseState();
|
|
}
|
|
|
|
class _QuestionnaireTruefalseState extends State<QuestionnaireTruefalse> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
width: double.infinity,
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
widget.title!.text.black.size(32.sp).bold.make(),
|
|
64.w.heightBox,
|
|
Padding(
|
|
padding: EdgeInsets.symmetric(horizontal: 96.w),
|
|
child: Flex(
|
|
direction: Axis.horizontal,
|
|
children: [
|
|
Row(
|
|
children: [
|
|
GestureDetector(
|
|
onTap: () {
|
|
widget.onPressed!(1);
|
|
},
|
|
child: BeeSingleCheck(
|
|
value: 1,
|
|
groupValue: widget.selected,
|
|
),
|
|
),
|
|
16.w.widthBox,
|
|
'正确'.text.black.size(28.sp).make(),
|
|
],
|
|
).expand(flex: 1),
|
|
Row(
|
|
children: [
|
|
GestureDetector(
|
|
onTap: () {
|
|
widget.onPressed!(0);
|
|
},
|
|
child: BeeSingleCheck(
|
|
value: 0,
|
|
groupValue: widget.selected,
|
|
),
|
|
),
|
|
16.w.widthBox,
|
|
'错误'.text.black.size(28.sp).make(),
|
|
],
|
|
).expand(flex: 1),
|
|
],
|
|
),
|
|
)
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|