Spaces:
Build error
Build error
File size: 5,834 Bytes
3382f47 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
import 'package:auto_gpt_flutter_client/constants/app_colors.dart';
import 'package:flutter/material.dart';
class ContinuousModeDialog extends StatefulWidget {
final VoidCallback? onProceed;
final ValueChanged<bool>? onCheckboxChanged;
const ContinuousModeDialog({
Key? key,
this.onProceed,
this.onCheckboxChanged,
}) : super(key: key);
@override
_ContinuousModeDialogState createState() => _ContinuousModeDialogState();
}
class _ContinuousModeDialogState extends State<ContinuousModeDialog> {
bool _attemptedToDismiss = false;
bool _checkboxValue = false;
@override
Widget build(BuildContext context) {
return WillPopScope(
onWillPop: () async {
setState(() {
_attemptedToDismiss = true;
});
return false;
},
child: Dialog(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(8.0),
side: BorderSide(
color: _attemptedToDismiss
? AppColors.accentDeniedLight
: Colors.transparent,
width: 3.0,
),
),
child: Container(
width: 260,
height: 251,
padding: const EdgeInsets.all(16),
child: Column(
children: [
// Black circle exclamation icon
Icon(Icons.error_outline,
color: _attemptedToDismiss
? AppColors.accentDeniedLight
: Colors.black),
const SizedBox(height: 8),
// Title
const Text(
'Continuous Mode',
textAlign: TextAlign.center,
style: TextStyle(
color: Colors.black,
fontSize: 16,
fontFamily: 'Archivo',
fontWeight: FontWeight.w600,
),
),
const SizedBox(height: 8),
// Block of text
const SizedBox(
width: 220,
child: Text(
'Agents operating in Continuous Mode will perform Actions without requesting authorization from the user. Configure the number of steps in the settings menu.',
textAlign: TextAlign.center,
style: TextStyle(
color: Colors.black,
fontSize: 12.50,
fontFamily: 'Archivo',
fontWeight: FontWeight.w400,
),
),
),
// Buttons
const SizedBox(height: 14),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
// Cancel Button
SizedBox(
width: 106,
height: 28,
child: ElevatedButton(
style: ElevatedButton.styleFrom(
backgroundColor: Colors.grey,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(8.0),
),
),
onPressed: () => Navigator.of(context).pop(),
child: const Text(
'Cancel',
textAlign: TextAlign.center,
style: TextStyle(
color: Colors.white,
fontSize: 12.50,
fontFamily: 'Archivo',
fontWeight: FontWeight.w400,
),
),
),
),
const SizedBox(width: 8),
// Proceed Button
SizedBox(
width: 106,
height: 28,
child: ElevatedButton(
style: ElevatedButton.styleFrom(
backgroundColor: AppColors.primaryLight,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(8.0),
),
),
onPressed: widget.onProceed, // Use the provided callback
child: const Text(
'Proceed',
textAlign: TextAlign.center,
style: TextStyle(
color: Colors.white,
fontSize: 12.50,
fontFamily: 'Archivo',
fontWeight: FontWeight.w400,
),
),
),
),
],
),
const SizedBox(height: 11),
// Checkbox and text
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Checkbox(
value: _checkboxValue,
onChanged: (bool? newValue) {
setState(() {
_checkboxValue = newValue ?? false;
});
if (widget.onCheckboxChanged != null) {
widget.onCheckboxChanged!(_checkboxValue);
}
},
),
const Text(
"Don't ask again",
style: TextStyle(
color: Colors.black,
fontSize: 11,
fontFamily: 'Archivo',
fontWeight: FontWeight.w400,
),
),
],
),
],
),
),
),
);
}
}
|