Results 11 comments of Peter Haddad

For an example of using [twitter_login](https://pub.dev/packages/twitter_login), check: [Using Twitter Authentication With Firebase](https://petercoding.com/firebase/2021/06/06/using-twitter-authentication-with-firebase-in-flutter/)

@thatvirtualboy the search should work normally, when doing `jekyll serve` open the console and check if `lunrsearchengine.js` is being found and read

I had a problem with it because I changed the baseurl. I changed the baseurl to `/` instead of ` baseurl: /mediumish-theme-jekyll` so the blog can be immediately in the...

Niether `qrscanner` nor `barcodescanner` is working with fcm. The problem is that fcm is using the androidx package while both of those packages are still using the `com.android.support` (old support...

This is a warning but basically in the `qrscanner.gradle` file you have to replace `compile` with `implementation` since `compile` was deprecated long time ago

To solve it, first open the `QRScanner.java` file and remove `import android.support.v4.app.ActivityCompat`, and add the following: ``` import androidx.core.app.ActivityCompat; ```

Out of curiosity, since it is merged. Why doesn't this work ionic cordova plugin add cordova-plugin-filepath @olaferlandsen

Whenever I do: ionic cordova plugin add https://github.com/olaferlandsen/cordova-plugin-filepath I get the following error: > UnhandledPromiseRejectionWarning: CordovaError: Failed to fetch plugin https://github.com/olaferlandsen/cordova-plugin-filepath via registry. Probably this is either a connection problem,...

yes I can help you if you want

update filepath plugin to the latest version which is 1.5.1 `ionic cordova plugin rm cordova-plugin-filepath` `ionic cordova plugin add cordova-plugin-filepath@latest` If that doesn't work then it might be from the...