ssk
ssk
```dart Uint8List _encrypt(AsymmetricBlockCipher cipher, String plain) { final data = Uint8List.fromList(utf8.encode(plain)); final length = data.length; final sizeBlock = cipher.inputBlockSize; final iteration = (length / sizeBlock).ceil(); final List encrypted = List.generate(iteration,...
> I recently migrated my project to Flutter 2 and am also getting the same issue. I checked the .g.dart file and it doesn't appear to be using the `ServerTimestampConverter`...
@mustakimpawle @zj902 I made PR #48 For now, you can use my solution using below codes in pubspec.yaml and dart. ```yaml # intent: ^1.4.0 intent: git: url: https://github.com/ssk-flutter/intent.git ref: feature/introduce-set-component...
Hi Sorry for late. I recommend android_intent library [android_intent](https://pub.dev/packages/android_intent) It has parameters you want [package, componentName].
same here. Is this still not solved? 
> Hi, > I am facing the same issue. This doesnt seems to be M1 specific. I have the exact same issue on MacBook Pro 2019 (Big Sur). Any fix...