| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510 | 
							- import 'package:app_settings/app_settings.dart';
 
- import 'package:auto_route/auto_route.dart';
 
- import 'package:easy_localization/easy_localization.dart';
 
- import 'package:flutter/material.dart';
 
- import 'package:page_transition/page_transition.dart';
 
- import 'package:provider/provider.dart';
 
- import 'package:qr_flutter/qr_flutter.dart';
 
- import 'package:telnow_mobile_new/src/api/api_auth_provider.dart';
 
- import 'package:telnow_mobile_new/src/layouts/functions/account.dart';
 
- import 'package:telnow_mobile_new/src/layouts/mobile/password.dart';
 
- import 'package:telnow_mobile_new/src/layouts/components/template.dart';
 
- import 'package:telnow_mobile_new/src/utils/U.dart';
 
- import 'package:telnow_mobile_new/src/utils/provider.dart';
 
- import 'package:permission_handler/permission_handler.dart';
 
- import '../../utils/C.dart';
 
- class MobAccountPage extends StatefulWidget {
 
-   const MobAccountPage({super.key});
 
-   @override
 
-   State<MobAccountPage> createState() => _MobAccountPageState();
 
- }
 
- class _MobAccountPageState extends State<MobAccountPage> {
 
-   final AccountFunction accFunc = AccountFunction();
 
-   
 
-   bool isDeniedNotifPermission = false;
 
-   bool serDis = false;
 
-   bool dnd = false;
 
-   bool autoTranslate = false;
 
-   List lang = [];
 
-   bool _timeLimit = false;
 
-   var codeOflang = {};
 
-   @override
 
-   void initState() {
 
-     Provider.of<UserModule>(context, listen: false).reset();
 
-     accFunc.getUser(context);
 
-     setToggle();
 
-     checkPermission(0);
 
-     // TODO: implement initState
 
-     super.initState();
 
-   }
 
-   checkPermission(seconds){
 
-     Future.delayed(Duration(seconds: seconds)).then((value)async {
 
-       bool denied = await Permission.notification.isDenied;
 
-       if(!U.getNotifPermission() && !denied) U.setNotifPermissionDismissed(false);
 
-       U.setNotifPermission(!denied);
 
-       setState(() => isDeniedNotifPermission = denied);
 
-     });
 
-   }
 
-   setToggle() async{
 
-     var license = await U.getLicense();
 
-     if(await U.isCompatibleWith(VersionKey.multiBahasa)){
 
-       lang = license['_validLang'] ?? [];
 
-     } else {
 
-       lang = license['languages'] != null ? license['languages'].split(',') : [];
 
-     }
 
-     setState(() {
 
-       dnd = Provider.of<UserModule>(context, listen: false).dndStatus();
 
-       serDis = U.servantDisplay();
 
-       autoTranslate = U.autoTranslate();
 
-     });
 
-   }
 
-   @override
 
-   Widget build(BuildContext context) {
 
-     codeOflang = {
 
-       "id": 'bahasa'.tr(),
 
-       "en": 'english'.tr(),
 
-       "ja": 'japanese'.tr(),
 
-       "zh": 'chinese'.tr(),
 
-       "ko": 'korean'.tr(),
 
-       "ar": 'arabic'.tr(),
 
-       "de": 'german'.tr(),
 
-       "fr": 'french'.tr(),
 
-       "hi": 'hindi'.tr(),
 
-       "nl": 'dutch'.tr()
 
-     };
 
-     return Provider.of<UserModule>(context).user().isNotEmpty ? Scaffold(
 
-       backgroundColor: backgroundColor,
 
-       appBar: AppBar(
 
-         elevation: 0,
 
-         bottomOpacity: 0,
 
-         backgroundColor: backgroundColor,
 
-         titleSpacing: 16,
 
-         title: Text('account'.tr(), style: TextStyle(color: textColor, fontSize: 17, fontWeight: FontWeight.w500), overflow: TextOverflow.ellipsis),
 
-       ),
 
-       body: Column(
 
-         children: [
 
-           divider(),
 
-           Expanded(
 
-             child: Container(
 
-               alignment: Alignment.topCenter,
 
-               width: U.bodyWidth(context),
 
-               child: SingleChildScrollView(
 
-                 child: Column(
 
-                   crossAxisAlignment: CrossAxisAlignment.start,
 
-                   children: [
 
-                     Container(
 
-                       padding: EdgeInsets.all(16),
 
-                       child: Row(
 
-                         children: [
 
-                           CircleAvatar(
 
-                             child: Text(Provider.of<UserModule>(context).user()['name'][0].toString().toUpperCase(), style: TextStyle(color: Colors.white)),
 
-                             backgroundColor: primaryColor,
 
-                             radius: 25,
 
-                           ),
 
-                           SizedBox(width: 16),
 
-                           Expanded(child: Text(Provider.of<UserModule>(context).user()['name'], style: TextStyle(fontSize: 16, fontWeight: FontWeight.w500, color: textColor), maxLines: 2, overflow: TextOverflow.ellipsis))
 
-                         ],
 
-                       ),
 
-                     ),
 
-                     separator(),
 
-                     Container(
 
-                       padding: EdgeInsets.all(16),
 
-                       child: Column(
 
-                         crossAxisAlignment: CrossAxisAlignment.start,
 
-                         children: [
 
-                           Text('info_label'.tr(), style: TextStyle(color: textColor, fontSize: 16, fontWeight: FontWeight.w500)),
 
-                           SizedBox(height: 20),
 
-                           textHorizontal('userId'.tr(), Provider.of<UserModule>(context).user()['relatedTo'] ?? Provider.of<UserModule>(context).user()['userId'], size: 16, opacity: 0.75),
 
-                           SizedBox(height: 12),
 
-                           textHorizontal('location'.tr(), Provider.of<UserModule>(context).user()['location'] ?? '-', size: 16, opacity: 0.75),
 
-                           SizedBox(height: 12),
 
-                           textHorizontal('servantGroup'.tr(), Provider.of<UserModule>(context).user()['requestTypeListDescriptionMobile'] != null ? Provider.of<UserModule>(context).user()['requestTypeListDescriptionMobile'].toLowerCase() == 'semua' ? 'all'.tr() : Provider.of<UserModule>(context).user()['requestTypeListDescriptionMobile'] : '-', size: 16, opacity: 0.75),
 
-                         ],
 
-                       ),
 
-                     ),
 
-                     Provider.of<UserModule>(context).houseKeeping()?separator():Container(),
 
-                     Provider.of<UserModule>(context).houseKeeping()?Container(
 
-                       padding: EdgeInsets.all(16),
 
-                       child: Column(
 
-                         crossAxisAlignment: CrossAxisAlignment.start,
 
-                         children: [
 
-                           Text('doNotDisturb'.tr(), style: TextStyle(color: textColor, fontSize: 16, fontWeight: FontWeight.w500)),
 
-                           SizedBox(height: 20),
 
-                           Row(
 
-                             children: [
 
-                               Expanded(child: Text('set_dnd_status'.tr(), style: TextStyle(color: textColor.withValues(alpha: 0.75), fontSize: 16))),
 
-                               Text(dnd?'active_dnd'.tr():'inactive_dnd'.tr(), style: TextStyle(color: textColor, fontSize: 14)),
 
-                               SizedBox(width: 5),
 
-                               GestureDetector(
 
-                                 child: Container(
 
-                                   decoration: BoxDecoration(border: Border.all(color: Provider.of<UserModule>(context).user()['checkedIn']?primaryColor:Colors.black38, width: 1.5), borderRadius: BorderRadius.all(Radius.circular(50))),
 
-                                   child: Row(
 
-                                     children: [
 
-                                       !dnd?Container(
 
-                                         width: 20, height: 20, decoration: BoxDecoration(color: Provider.of<UserModule>(context).user()['checkedIn']?primaryColor:Colors.black38, borderRadius: BorderRadius.all(Radius.circular(20))),
 
-                                       ):Container(width: 20, height: 20),
 
-                                       dnd?Container(
 
-                                         width: 20, height: 20, decoration: BoxDecoration(color: Provider.of<UserModule>(context).user()['checkedIn']?primaryColor:Colors.black38, borderRadius: BorderRadius.all(Radius.circular(20))),
 
-                                       ):Container(width: 20, height: 20),
 
-                                     ],
 
-                                   ),
 
-                                 ),
 
-                                 onTap: Provider.of<UserModule>(context).user()['checkedIn']?(){
 
-                                   dialogConfirm(context: context, title: 'set_dnd_status'.tr(), text: dnd?'msg_change_inactive'.tr():'msg_change_active'.tr(), actionYes: ()async{
 
-                                     bool res = await accFunc.setDndStatus(context, dnd);
 
-                                     if(res){
 
-                                       setState(() => dnd = !dnd);
 
-                                     }
 
-                                   });
 
-                                 }:null,
 
-                               ),
 
-                             ],
 
-                           )
 
-                         ],
 
-                       ),
 
-                     ):Container(),
 
-                     !Provider.of<UserModule>(context).user()['_profile']['isRoom']?separator():Container(),
 
-                     !Provider.of<UserModule>(context).user()['_profile']['isRoom']?Container(
 
-                       padding: EdgeInsets.all(16),
 
-                       child: Column(
 
-                         crossAxisAlignment: CrossAxisAlignment.start,
 
-                         children: [
 
-                           Text('display_menu'.tr(), style: TextStyle(color: textColor, fontSize: 16, fontWeight: FontWeight.w500)),
 
-                           SizedBox(height: 20),
 
-                           Row(
 
-                             children: [
 
-                               Expanded(child: Text(serDis?'ser_group'.tr():'req_group'.tr(), style: TextStyle(color: textColor.withValues(alpha: 0.75), fontSize: 16))),
 
-                               SizedBox(width: 5),
 
-                               GestureDetector(
 
-                                 child: Container(
 
-                                   decoration: BoxDecoration(border: Border.all(color: primaryColor, width: 1.5), borderRadius: BorderRadius.all(Radius.circular(50))),
 
-                                   child: Row(
 
-                                     children: [
 
-                                       !serDis?Container(
 
-                                         width: 20, height: 20, decoration: BoxDecoration(color: primaryColor, borderRadius: BorderRadius.all(Radius.circular(20))),
 
-                                       ):Container(width: 20, height: 20),
 
-                                       serDis?Container(
 
-                                         width: 20, height: 20, decoration: BoxDecoration(color: primaryColor, borderRadius: BorderRadius.all(Radius.circular(20))),
 
-                                       ):Container(width: 20, height: 20),
 
-                                     ],
 
-                                   ),
 
-                                 ),
 
-                                 onTap: (){
 
-                                   setState(() {
 
-                                     if(serDis){
 
-                                       U.setServantDisplay(false);
 
-                                       serDis = false;
 
-                                     }
 
-                                     else{
 
-                                       U.setServantDisplay(true);
 
-                                       serDis = true;
 
-                                     }
 
-                                   });
 
-                                 },
 
-                               ),
 
-                             ],
 
-                           )
 
-                         ],
 
-                       ),
 
-                     ):Container(),
 
-                     separator(),
 
-                     Container(
 
-                       padding: EdgeInsets.fromLTRB(16, 16, 16, 0),
 
-                       child: Column(
 
-                         crossAxisAlignment: CrossAxisAlignment.start,
 
-                         children: [
 
-                           Text('setting'.tr(), style: TextStyle(color: textColor, fontSize: 16, fontWeight: FontWeight.w500)),
 
-                           SizedBox(height: 6),
 
-                           GestureDetector(
 
-                             child: Container(
 
-                               color: Colors.white,
 
-                               padding: EdgeInsets.symmetric(vertical: 16),
 
-                               child: Row(
 
-                                 children: [
 
-                                   U.iconsax('bold/global', color: textColor.withValues(alpha: 0.75)),
 
-                                   SizedBox(width: 16),
 
-                                   Expanded(child: Text('language'.tr(), style: TextStyle(color: textColor.withValues(alpha: 0.75), fontSize: 16), overflow: TextOverflow.ellipsis)),
 
-                                   Text(codeOflang[context.locale.toString()]!, style: TextStyle(color: textColor)),
 
-                                   SizedBox(width: 12),
 
-                                   U.iconsax('arrow-right-3', size: 16, color: textColor.withValues(alpha: 0.75)),
 
-                                 ],
 
-                               ),
 
-                             ),
 
-                             onTap: ()=>changeLang(context, Provider.of<UserModule>(context, listen: false).user()),
 
-                           ),
 
-                           divider(),
 
-                           Container(
 
-                             color: Colors.white,
 
-                             padding: EdgeInsets.symmetric(vertical: 16),
 
-                             child: Row(
 
-                               children: [
 
-                                 Icon(Icons.g_translate_rounded, color: textColor.withValues(alpha: 0.75)),
 
-                                 SizedBox(width: 16),
 
-                                 Expanded(child: Text('auto_translate'.tr(), style: TextStyle(color: textColor.withValues(alpha: 0.75), fontSize: 16), overflow: TextOverflow.ellipsis)),
 
-                                 Text(autoTranslate?'ON':'OFF', style: TextStyle(color: textColor)),
 
-                                 SizedBox(width: 5),
 
-                                 GestureDetector(
 
-                                   child: Container(
 
-                                     decoration: BoxDecoration(border: Border.all(color: autoTranslate?primaryColor:Colors.black38, width: 1.5), borderRadius: BorderRadius.all(Radius.circular(50))),
 
-                                     child: Row(
 
-                                       children: [
 
-                                         !autoTranslate?Container(
 
-                                           width: 20, height: 20, decoration: BoxDecoration(color: Colors.black38, borderRadius: BorderRadius.all(Radius.circular(20))),
 
-                                         ):Container(width: 20, height: 20),
 
-                                         autoTranslate?Container(
 
-                                           width: 20, height: 20, decoration: BoxDecoration(color: primaryColor, borderRadius: BorderRadius.all(Radius.circular(20))),
 
-                                         ):Container(width: 20, height: 20),
 
-                                       ],
 
-                                     ),
 
-                                   ),
 
-                                   onTap: (){
 
-                                     setState(() {
 
-                                       if(autoTranslate){
 
-                                         U.setAutoTranslate(false);
 
-                                         autoTranslate = false;
 
-                                       }
 
-                                       else{
 
-                                         U.setAutoTranslate(true);
 
-                                         autoTranslate = true;
 
-                                       }
 
-                                     });
 
-                                   },
 
-                                 ),
 
-                               ],
 
-                             ),
 
-                           ),
 
-                           divider(),
 
-                           GestureDetector(
 
-                             child: Container(
 
-                               color: Colors.white,
 
-                               padding: EdgeInsets.symmetric(vertical: 16),
 
-                               child: Row(
 
-                                 children: [
 
-                                   U.iconsax('bold/key', color: textColor.withValues(alpha: 0.75)),
 
-                                   SizedBox(width: 16),
 
-                                   Text('password'.tr(), style: TextStyle(color: textColor.withValues(alpha: 0.75), fontSize: 16)),
 
-                                   Expanded(child: Text('settingPasswordText'.tr(), style: TextStyle(color: textColor), overflow: TextOverflow.ellipsis, textAlign: TextAlign.end)),
 
-                                   SizedBox(width: 12),
 
-                                   U.iconsax('arrow-right-3', size: 16, color: textColor.withValues(alpha: 0.75)),
 
-                                 ],
 
-                               ),
 
-                             ),
 
-                             onTap: ()=>Navigator.push(context, PageTransition(type: PageTransitionType.rightToLeft, child: MobPasswordPage(user: Provider.of<UserModule>(context, listen: false).user()))).then((value) {
 
-                               value??false;
 
-                               if (value) showSuccess(context, 'messagePassChanged'.tr());
 
-                             }),
 
-                           ),
 
-                           divider(),
 
-                           GestureDetector(
 
-                             child: Container(
 
-                               color: Colors.white,
 
-                               padding: EdgeInsets.symmetric(vertical: 16),
 
-                               child: Row(
 
-                                 children: [
 
-                                   U.iconsax('bold/logout', color: textColor.withValues(alpha: 0.75)),
 
-                                   SizedBox(width: 16),
 
-                                   Expanded(child: Text('logout'.tr(), style: TextStyle(color: textColor.withValues(alpha: 0.75), fontSize: 16), overflow: TextOverflow.ellipsis)),
 
-                                   U.iconsax('arrow-right-3', size: 16, color: textColor.withValues(alpha: 0.75)),
 
-                                 ],
 
-                               ),
 
-                             ),
 
-                             onTap: (){
 
-                               showDialog(
 
-                                 context: context,
 
-                                 builder: (BuildContext context) {
 
-                                   return AlertDialog(
 
-                                     title: Text("logout".tr()),
 
-                                     content: Text("textLogout".tr()),
 
-                                     actions: <Widget>[
 
-                                       TextButton(
 
-                                         child: Text("buttonNo".tr()),
 
-                                         onPressed: () {
 
-                                           Navigator.of(context).pop();
 
-                                         },
 
-                                       ),
 
-                                       TextButton(
 
-                                           onPressed: () => accFunc.logoutAction(context),
 
-                                           child: Text("buttonYes".tr())),
 
-                                     ],
 
-                                   );
 
-                                 },
 
-                               );
 
-                             },
 
-                           ),
 
-                         ],
 
-                       ),
 
-                     ),
 
-                     separator(),
 
-                     GestureDetector(
 
-                       child: Container(
 
-                         color: Colors.white,
 
-                         margin: EdgeInsets.symmetric(horizontal: 16),
 
-                         padding: EdgeInsets.symmetric(vertical: 16),
 
-                         child: Row(
 
-                           children: [
 
-                             U.iconsax('bold/scan', color: textColor.withValues(alpha: 0.75)),
 
-                             SizedBox(width: 16),
 
-                             Expanded(child: Text('scan_qr'.tr(), style: TextStyle(color: textColor.withValues(alpha: 0.75), fontSize: 16), overflow: TextOverflow.ellipsis)),
 
-                             U.iconsax('arrow-right-3', size: 16, color: textColor.withValues(alpha: 0.75)),
 
-                           ],
 
-                         ),
 
-                       ),
 
-                       onTap: (){
 
-                         var size = MediaQuery.of(context).size.width - (MediaQuery.of(context).size.width/3);
 
-                         var pid = U.getPidFromUrl(context.router.currentUrl);
 
-                         var qr_data = 'https://telnow.telmessenger.com/#/app/${pid}%23${U.getBaseUrl()}';
 
-                         showDialog(
 
-                           context: context,
 
-                           builder: (BuildContext context) {
 
-                             return AlertDialog(
 
-                               title: Text("show_qr".tr(), style: TextStyle(fontSize: 16, color: Colors.black), textAlign: TextAlign.center),
 
-                               content: Column(
 
-                                 mainAxisSize: MainAxisSize.min,
 
-                                 crossAxisAlignment: CrossAxisAlignment.center,
 
-                                 children: [
 
-                                   SizedBox(
 
-                                     width: size,
 
-                                     height: size,
 
-                                     child: QrImageView(
 
-                                       data: qr_data,
 
-                                       version: QrVersions.auto,
 
-                                       gapless: true,
 
-                                     ),
 
-                                   ),
 
-                                   SizedBox(height: 15),
 
-                                   Text("show_qr_desc".tr(), style: TextStyle(fontSize: 14, color: Colors.black), textAlign: TextAlign.center)
 
-                                 ],
 
-                               ),
 
-                             );
 
-                           },
 
-                         );
 
-                       },
 
-                     ),
 
-                     separator(),
 
-                     isDeniedNotifPermission ? Container(
 
-                       padding: EdgeInsets.all(16),
 
-                       child: GestureDetector(
 
-                         child: Column(
 
-                           crossAxisAlignment: CrossAxisAlignment.start,
 
-                           children: [
 
-                             Text("not_allow_permission".tr()),
 
-                             SizedBox(height: 8,),
 
-                             Text("tap_here".tr(), style: TextStyle(color: Color(0xFF198AF2)),),
 
-                           ],
 
-                         ),
 
-                         onTap: () => AppSettings.openAppSettings(type: AppSettingsType.notification).then((value) async {
 
-                           // print("after open setting");
 
-                           // checkPermission(2);
 
-                         }),
 
-                       ),
 
-                     ) : Container(),
 
-                     isDeniedNotifPermission ? Container() : separator(),
 
-                     Padding(
 
-                       padding: const EdgeInsets.symmetric(vertical: 24),
 
-                       child: Center(child: Column(
 
-                         children: [
 
-                           Text("${"version".tr()} ${ApiAuthProvider().displayVersion}"),
 
-                           Text("Build ${ApiAuthProvider().buildNumber}", style: TextStyle(fontSize: 13),),
 
-                         ],
 
-                       )),
 
-                     )
 
-                   ],
 
-                 ),
 
-               ),
 
-             ),
 
-           )
 
-         ],
 
-       ),
 
-     ) : Provider.of<UserModule>(context).resetData() ? RefreshPage(() {
 
-       Provider.of<UserModule>(context, listen: false).setResetData(false);
 
-       accFunc.getUser(context);
 
-     }) : _timeLimit ? showButton(context) : loadingTemplate(() {if(mounted) setState(()=>_timeLimit=true);},);
 
-   }
 
-   changeLang(context, user) {
 
-     showModalBottomSheet(
 
-         context: context,
 
-         backgroundColor: Colors.white,
 
-         builder: (BuildContext context) {
 
-           return Column(
 
-             mainAxisSize: MainAxisSize.min,
 
-             children: <Widget>[
 
-               Padding(
 
-                 padding: EdgeInsets.symmetric(vertical: 16),
 
-                 child: Center(
 
-                   child: Text('chooseLanguage'.tr(), style: TextStyle(color: textColor)),
 
-                 ),
 
-               ),
 
-               divider(),
 
-               SizedBox(height: 16),
 
-               listOfLang(user),
 
-               SizedBox(height: 16)
 
-             ],
 
-           );
 
-         }
 
-     );
 
-   }
 
-   listOfLang(user){
 
-     return SafeArea(
 
-       child: Column(
 
-         crossAxisAlignment: CrossAxisAlignment.start,
 
-         children: [
 
-           ListTile(
 
-             title: Text('bahasa'.tr(), style: TextStyle(color: textColor, fontSize: 14)),
 
-             trailing: Icon(context.locale.toString()=='id'?Icons.radio_button_checked:Icons.radio_button_off, color: primaryColor, size: 18),
 
-             onTap: context.locale.toString() != 'id' ? () async {
 
-               accFunc.switchLang(context, 'id', user);
 
-               Navigator.of(context).pop();
 
-             } : null,
 
-           ),
 
-           ListTile(
 
-             title: Text('english'.tr(), style: TextStyle(color: textColor, fontSize: 14)),
 
-             trailing: Icon(context.locale.toString()=='en'?Icons.radio_button_checked:Icons.radio_button_off, color: primaryColor, size: 18),
 
-             onTap: context.locale.toString() != 'en' ? () async {
 
-               accFunc.switchLang(context, 'en', user);
 
-               Navigator.of(context).pop();
 
-             } : null,
 
-           ),
 
-           //TODO: kene
 
-           lang.length - 1 > 1 ? ListTile(
 
-             title: Text(codeOflang[lang[2]], style: TextStyle(color: textColor, fontSize: 14)),
 
-             trailing: Icon(context.locale.toString()==lang[2]?Icons.radio_button_checked:Icons.radio_button_off, color: primaryColor, size: 18),
 
-             onTap: context.locale.toString() != lang[2] ? () async {
 
-               accFunc.switchLang(context, 1, user);
 
-               Navigator.of(context).pop();
 
-             } : null,
 
-           ) : Container(),
 
-           lang.length - 1 > 2 ? ListTile(
 
-             title: Text(codeOflang[lang[3]], style: TextStyle(color: textColor, fontSize: 14)),
 
-             trailing: Icon(context.locale.toString()==lang[3]?Icons.radio_button_checked:Icons.radio_button_off, color: primaryColor, size: 18),
 
-             onTap: context.locale.toString() != lang[3] ? () async {
 
-               accFunc.switchLang(context, 2, user);
 
-               Navigator.of(context).pop();
 
-             } : null,
 
-           ) : Container(),
 
-           lang.length - 1 > 3 ? ListTile(
 
-             title: Text(codeOflang[lang[4]], style: TextStyle(color: textColor, fontSize: 14)),
 
-             trailing: Icon(context.locale.toString()==lang[4]?Icons.radio_button_checked:Icons.radio_button_off, color: primaryColor, size: 18),
 
-             onTap: context.locale.toString() != lang[4] ? () async {
 
-               accFunc.switchLang(context, 3, user);
 
-               Navigator.of(context).pop();
 
-             } : null,
 
-           ) : Container(),
 
-         ],
 
-       ),
 
-     );
 
-   }
 
- }
 
 
  |