Akshdeep Singh

Results 10 comments of Akshdeep Singh

@ryanheise the pitch adjustment doesn't work on android when using just_audio_background? It shows UnimplementedError, but it worked for me before using background plugin.

Hi @ryanheise, can you expose this ExoPlayer api: [Retrieving metadata: Without playback](https://developer.android.com/guide/topics/media/exoplayer/retrieving-metadata#without_playback)

Here: https://github.com/ryanheise/just_audio/blob/097e04d2ad8f5481dee172f4283a0c8dc7178bf1/just_audio/android/src/main/java/com/ryanheise/just_audio/AudioPlayer.java#L222-L241 ExoPlayer also parses id3 metadata, but the event is not sent to flutter app in that case. I think, it would be good idea to add the event...

Hi @danagbemava-nc, no I am not referring to them. If you check, below 3 are different: - [ElevatedButton](https://master-api.flutter.dev/flutter/material/ElevatedButton/ElevatedButton.html) - [ElevatedButton.icon()](https://master-api.flutter.dev/flutter/material/ElevatedButton/ElevatedButton.icon.html) - [IconButton()](https://master-api.flutter.dev/flutter/material/IconButton/IconButton.html) I am talking about `IconButton` here.

Related: https://github.com/shabados/SantLipi/issues/42

When will this feature be added? Any suggestions on how to handle kotlin flows as of now?

I am using a common `LoadingView` in my app. Whenever an async operation is required, for example, fetching/submit data from repository, I navigate to this screen to show loading. On...

My use case is to hide/show sliver list like this: ```dart sliver: show ? SliverList() : null ``` I will try with `SliverAnimatedPaintExtent` and see if it works...

@Kavantix `SliverAnimatedPaintExtent` works but not completely as desired. - I can't use it with Fade transition - There are no options to set the curve of animation I was actually...

I missed the curve option. But still, I am not able to use it with AnimatedSwitcher for the fade transition. Can you check the code below? Method 1: neither expand...