增加隐私协议
This commit is contained in:
parent
80d07e43c5
commit
33d5481773
Binary file not shown.
|
After Width: | Height: | Size: 319 KiB |
|
|
@ -189,7 +189,7 @@ class StudentQuestions extends Object {
|
|||
int correctRate;
|
||||
|
||||
@JsonKey(name: 'height')
|
||||
double height;
|
||||
double? height;
|
||||
|
||||
@JsonKey(name: 'useTime')
|
||||
int? useTime;
|
||||
|
|
|
|||
|
|
@ -363,7 +363,7 @@ Widget $scoringQuestionsView(
|
|||
? EdgeInsets.only(top: 6.4.h)
|
||||
: EdgeInsets.symmetric(vertical: 2.h);
|
||||
return Container(
|
||||
height: item.height * scaleRatio,
|
||||
height: item.height! * scaleRatio,
|
||||
padding: EdgeInsets.zero,
|
||||
child: item.useTime == 0?Container():Stack(
|
||||
alignment: const FractionalOffset(0, 0),
|
||||
|
|
|
|||
|
|
@ -375,7 +375,7 @@ Widget $reviewedItem({
|
|||
],
|
||||
),
|
||||
child: Row(children: [
|
||||
if (!jobTaskItem.isFixed!)
|
||||
/*if (!jobTaskItem.isFixed!)
|
||||
Expanded(
|
||||
flex: 1,
|
||||
child: GestureDetector(
|
||||
|
|
@ -394,7 +394,7 @@ Widget $reviewedItem({
|
|||
child: quickText('收集订正', color: const Color(0xFF8C68FF), size: 11.sp),
|
||||
),
|
||||
),
|
||||
),
|
||||
),*/
|
||||
Expanded(
|
||||
flex: 1,
|
||||
child: GestureDetector(
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ class _RegisterState extends State<Register> with RequestToolMixin {
|
|||
alignment: Alignment.center,
|
||||
decoration: const BoxDecoration(
|
||||
image: DecorationImage(
|
||||
image: AssetImage('assets/images/login_bg.png'),
|
||||
image: AssetImage('assets/images/register_bg.png'),
|
||||
fit: BoxFit.fill, // 完全填充
|
||||
),
|
||||
),
|
||||
|
|
@ -254,7 +254,17 @@ class _RegisterState extends State<Register> with RequestToolMixin {
|
|||
child: quickText(
|
||||
'《用户协议》',
|
||||
size: 12.sp,
|
||||
color: Colors.deepOrangeAccent,
|
||||
color: Theme.of(context).primaryColor,
|
||||
),
|
||||
),
|
||||
InkWell(
|
||||
onTap: () {
|
||||
Get.toNamed(Routes.agreementPage, arguments: {"type": AGREEMENT_KEY.PRIVACY_GREEMENT.name});
|
||||
},
|
||||
child: quickText(
|
||||
'《隐私协议》',
|
||||
size: 12.sp,
|
||||
color:Theme.of(context).primaryColor,
|
||||
),
|
||||
),
|
||||
],
|
||||
|
|
|
|||
|
|
@ -365,6 +365,16 @@ class _LoginPageState extends State<LoginPage> {
|
|||
style: TextStyle(fontSize: 12.r, color: Theme.of(context).primaryColor),
|
||||
),
|
||||
),
|
||||
InkWell(
|
||||
onTap: () {
|
||||
Get.toNamed(Routes.agreementPage, arguments: {"type": AGREEMENT_KEY.PRIVACY_GREEMENT.name});
|
||||
},
|
||||
child: quickText(
|
||||
'《隐私协议》',
|
||||
size: 12.sp,
|
||||
color:Theme.of(context).primaryColor,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
]),
|
||||
|
|
|
|||
Loading…
Reference in New Issue