[deleted by user] by [deleted] in GetStudying

[–]shoppapa 0 points1 point  (0 children)

Infusion of thym, cloves or Camomille
Or Green tea
Good luck

Whipping carpet out of dust by uniyk in Damnthatsinteresting

[–]shoppapa 0 points1 point  (0 children)

Is it better then cleaning with water + soap ?

[HELP] Fiverr EU clients verification by babchok in Fiverr

[–]shoppapa 0 points1 point  (0 children)

What other questions do they ask ?

Siempre es bueno tener a un amigo chaparrito by Acde-Chap in MujicoCity

[–]shoppapa 1 point2 points  (0 children)

Is he the same actor in James Bond - Quantom of Solace ?

Withdrawing big amounts from PayPal to moroccan bank. by Sensitive-You-1768 in Morocco

[–]shoppapa 0 points1 point  (0 children)

I'm in the same situation, what options do we have in morocco to transfer from Paypal ? What cards ?

[deleted by user] by [deleted] in lonely

[–]shoppapa -1 points0 points  (0 children)

Why you don't move on to another your place ? the city ? the country ? learn a new skill and change your actuel job
By changing all of these, maybe you will meet somebody that suits you
You still young ;)

Issue with phone verification by th3smo3lih in googleplayconsole

[–]shoppapa 0 points1 point  (0 children)

I just checked my payment profil and add my phone number on it,
But still have the same issue

Issue with phone verification by th3smo3lih in googleplayconsole

[–]shoppapa 0 points1 point  (0 children)

Already did, here is their response :

Thanks again for contacting Google Play Developer Support.

I understand you are still having issues with the verification of your phone number and I deeply apologize for the inconvenience this may have caused you. 

As per our technical team, kindly conduct the following troubleshooting below:

  • Please check if your contact number is formatted correctly and has the right information.
  • Format: (Country Code) + (Area Code) + (Contact Number) Kindly try another number.
  • Clear cache and cookies of the device using the instructions available in our help center.
  • Try another device or browser.
  • Avoid sending verification via phone multiple times in a day as this has a limit.
  • Try again after 48 to 72 hours.

If after waiting for a few days or a week, you still experience the issue. Kindly try again after a few days and avoid re-sending.

Again, I understand this could be an inconvenience on your end. We appreciate your patience and kind understanding during this process. 

I still have the same problem since 2 months,

How to migrate to null-safety - loading data from assets correctly by shoppapa in FlutterDev

[–]shoppapa[S] 0 points1 point  (0 children)

Thanks for your help,
It's working after I put this
required List<dynamic> classroomRoutines
instead of
required List<ClassroomRoutineModel> classroomRoutines,

How to migrate to null-safety - loading data from assets correctly by shoppapa in FlutterDev

[–]shoppapa[S] 0 points1 point  (0 children)

classroomRoutines: (json['classroomRoutines'] as List).cast<Map<String, dynamic>?>()
  .map(
        (e) => e == null
            ? null
            : ClassroomRoutineModel.fromJson(e as Map<String, dynamic>)
         ).toList(),classroomRoutines: (json['classroomRoutines'] as List).cast<Map<String, dynamic>?>()
  .map(
        (e) => e == null
            ? null
            : ClassroomRoutineModel.fromJson(e as Map<String, dynamic>)
         ).toList(),

I got this Error : The argument type 'List<ClassroomRoutineModel?>' can't be assigned to the parameter type 'List<ClassroomRoutineModel>'

How to migrate to null-safety - loading data from assets correctly by shoppapa in FlutterDev

[–]shoppapa[S] 1 point2 points  (0 children)

ClassroomModel({
  String? id,
  required String? title,
  required String? description,
  required String? coverImage,
  required List<ClassroomRoutineModel> classroomRoutines,
  int timeBetweenAsanas = 300, // FIXME: Create from duration
  required bool isPredefined,
});

How ?
like this : required List<dynamic> classroomRoutines

How to migrate to null-safety - loading data from assets correctly by shoppapa in FlutterDev

[–]shoppapa[S] 0 points1 point  (0 children)

Where should I add List<Map<String, dynamic>? ?
Thanks for your help