Rox Teddy

Results 22 comments of Rox Teddy

Hello everybody ! I have made a little POC. It is an early alpha version so it may change a lot but feel free to have a look and tell...

> This is incredibly frustrating. I'm working on a new project using Ionic 6.x and Capacitor 3. > Unfortunately, Capacitor doesn't have the essential plugins for typical workloads: > >...

@LuisManuel1983 what is your use case ? Do you want the user to be able to find the file from their Files app or something like that ? I found...

Hello there ! I updated my plugin and made it available to npm : https://www.npmjs.com/package/@agorapulse/capacitor-mediastore I think that is something that could be added to @capacitor-community/media but they haven't accepted...

Hi According this (https://stackoverflow.com/questions/46751925/how-to-set-windowsoftinputmode-programmatically-from-fragments), it is indeed possible to change it programmatically. However, to be fully useful, it would be great if the webview could be moved on top on...

We tried to implement the scroller in our ionic app and on iOS, the app/viewview reloads after a few up and down scolls. It seems to be caused by a...

Hello It is not clear how default size works because even with minRows set to 1, the default calculated height equals to 2 lines.

By the way I'm wondering why we need to call .seek() rather than the data being sent within the event.

In the meantime, I found this way (code in TypeScript) ``` this.audio = new Howl({src: url, format: 'mp3'}); this.currentNode = (this.audio as any)._sounds[0]?._node; this.currentNode?.disconnect(); let node = Howler.ctx.createGain(); this.currentNode?.connect(node); node.connect(Howler.masterGain);...

Many thanks for your answer @olvb ^^