codelovercc

Results 37 comments of codelovercc

> For me the main issue went away, when I set the MinSDKversion for IOS to 13 (see https://docs.amplify.aws/flutter/start/project-setup/platform-setup/#enable-keychain) This solve issue that can't persist data on macOS for me.

Hi, @mjebrahimi Is `TagWith` supported now? I have some command interceptors need the sql tag info when executing batch delete or update.

I just use the SQL in the `/upload/admin/model/extension/payment/stripe.php` method `Install` to create these tables manually. I don't know why the method `Install` has not been called, my opencart version is...

After reading and debugging the source code. I've found that this issue is caused by the controller permission check in the file `upload/admin/controller/extension/payment/stripe.php` line 199 and line 207. `if ($this->user->hasPermission('modify',...

Don't use Mockito or Mocktail since it has `FlutterSecureStorage.setMockInitialValues` https://github.com/mogol/flutter_secure_storage/issues/471

A `nameof` expression produces the name of a variable, type, or member as the string constant. A `nameof` expression is evaluated at compile time and has no effect at run...

> You are right :), XML comments in the destination model and also in the Mapster source code.

Documentation comments https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/xmldoc/

Here is an example. file: https://github.com/MapsterMapper/Mapster/blob/master/src/Mapster/Interfaces/IMapper.cs Adding XML documentation comments for IMapper ```C# using System; using Mapster; // ReSharper disable once CheckNamespace namespace MapsterMapper { /// /// Provide basic mapping...