lmfmaier
lmfmaier
I worked around this bug. Set `resize:none` as mentioned above. Use an autosize plugin (e.g. https://github.com/jackmoore/autosize/blob/master/src/autosize.js), which resizes the textarea automatically when the text doesn't fit anymore Listen to the...
Same issue here. Setting "overscroll-behavior-y: none" in css does not help
> I have found [`WebView#setOverScrollMode(int mode)`](https://developer.android.com/reference/android/webkit/WebView#setOverScrollMode(int)) to be working fine: > > ```kotlin > class MainActivity : BridgeActivity() { > // ... > > /** > * Called during initialization...
Here's my working implementation in Java. Note that getBridge() returns null in the onCreate() method in Capacitor 3, but works in onStart() ```java import android.os.Bundle; import android.webkit.WebView; import com.getcapacitor.BridgeActivity; public...
I can't get this to work with capacitor 3. The dialog with the google account selection shows up but when i select an account it's ```com.google.android.gms.common.api.ApiException: 10``` I'm pretty sure...
> After many hours with SHA1, keys, clients ID, etc... I finally found ([here](https://devdactic.com/capacitor-google-sign-in/)) the solution that worked for me. I simply added `REPLACEME.apps.googleusercontent.com` in this file: `android/app/src/main/res/values/strings.xml` Now sign-in...
> This method doesn't seem to work in Capacitor 4 anymore. Is there anyway to disable the bounce scroll in Android in Capacitor 4? Still works like a charm in...
> I'm quite new to Capacitor on Android and if it works for you, I think that must mean I edited the wrong file. Can you please tell me which...
Succesfully created a project and generated a model class from local database table. Successfully ran the generated project skeleton ("You're now flying with Phalcon. Great things are about to happen!")...
When looping through the instances to pause them, I check the source to determine if it's the current player. It's a bit hacky as it assumes that no two instances...