String privacy =
"Your use of the services provided by the Learn platform:"
+"\nAccess to the Services is permitted on a temporary basis, and we reserve the right to withdraw or modify the service we provide on the Services without prior notice. We are not responsible for the unavailability of the Services for any reason, at any time and for any period."
+"\n\n•You are solely responsible for any participation from you on our services in the form of a written explanation on the explanation board or by speaking into the microphone in direct communication between you and the students."
+"\n"
+"\n• You are solely responsible for any written conversation between you and the students and you acknowledge that you expose yourself to legal accountability if it contains anything that violates the rules and public morals."
Widget _buildPopupDialog(BuildContext context, content) {
return AlertDialog(
content: SingleChildScrollView(
child: Text(
content,
maxLines: 100,
overflow: TextOverflow.ellipsis,
textAlign: TextAlign.justify,
textDirection: TextDirection.ltr,
style: TextStyle(fontSize: 13.0)
),
),
actions: [
TextButton(
onPressed: () {
Navigator.pop(context);
},
child: const Text('Close'),
),
],
);
}