ssk

Results 6 comments of 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? ![ezgif com-gif-maker](https://user-images.githubusercontent.com/50195727/154175772-c44788c4-2059-4b17-b313-254f76a8f951.gif)

> 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...