behrooz

Results 8 comments of behrooz

The problem solved by adding the following code in the Api.php file has been resolved. `public function replyKeyboardMarkup(array $params) { return Keyboard::make($params); }` Why is the patch upgraded this way...

Does anyone have an idea? @vyuldashev

This is my problem too. Does anyone know?

same here! @ekasetiawans Please check back as I have updated everything ``` flutter build apk --split-per-abi e: /home/xx/.gradle/caches/transforms-3/88a80dc6b6ae1758788c64291343b46c/transformed/core-1.12.0/jars/classes.jar!/META-INF/core_release.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version...

Apparently, the problem is from placing the **foregroundServiceType** value in the `.pub-cache/hosted/pub.dev/flutter_background_service_android-6.2.1/android/src/main/AndroidManifest.xml `file, I manually changed it to this: ```xml ``` The problem is temporary, but the basics must be...

> But I am just running the main.dart given in package example. Still getting the same exception. I also have this error : ```dart Launching lib/main.dart on Nexus 5 in...

I solved this by adding **`textDirection: widget.textDirection`** ```dart Widget marquee = ListView.builder( controller: _controller, scrollDirection: widget.scrollAxis, reverse: widget.textDirection == TextDirection.rtl, physics: NeverScrollableScrollPhysics(), itemBuilder: (_, i) { final text = i.isEven...