wahyu-handayani

Results 25 comments of wahyu-handayani

I get the same case, any update for this case?

Try to change ```_player.setReleaseMode(ReleaseMode.LOOP);``` into ```_player.setLoopMode(LoopMode.one);```

Hi @tomasbaran right now I am trying to build an apps that can play a music on the background using ```audioplayers``` package, and when I read this article https://denis-korovitskii.medium.com/flutter-demo-audioplayers-on-background-via-audio-service-c95d65c90ae1 ,...

@tomasbaran Thank you very much for your detail explanation, I have read your comment and tried it on my own and finally.. got the good result. But there is something...

@tomasbaran I am able to do looping, here is the code and I call this inside onPressed method: ``` playerA = await audioCacheA.loop("Rain/${widget.musicAsset}.mp3"); ``` where ```AudioPlayer playerA = AudioPlayer();``` and...

@tomasbaran you're welcome, glad to get your help

> @ahmedhassan747474 set your state management to false and it will rebuild your screen every time you click on items. I have set it into ```stateManagement: false,``` but everytime I...

@hanishk There is no ```onPressed``` property inside ```PersistentBottomNavBarItem``` so I add setState like this: ``` onItemSelected: (index) { setState(() { _controller.index=index; }); ....... }, ``` but still there is no...

@hanishk here is part of thecode, I have been set statemangement into false => but the result is still rebuild for all screen, while statemangement true=> it only rebuild when...

@hanishk I am sorry for disturbing you, I have tried your code just now, here is it: but the result is like I explain before: ``` statemangement into false =>...