Manuinder Sekhon

Results 6 comments of Manuinder Sekhon

Hi @rahulk3sharma, currently the package requires `itemExtent` because internally it uses `SliverFixedExtentList` to render the items on the viewport. I used this specifically because flutter docs mention that for large...

Hi @dhombios, Right now, I have included the very limited set of functions for deepspeech library. I am not working further on it right now, but if more functionality is...

There are two major features left which I think we should include before releasing the library. [Hot word feature](https://deepspeech.readthedocs.io/en/latest/C-API.html#_CPPv413DS_AddHotWordP10ModelStatePKcf) and [Decode audio from stream](https://deepspeech.readthedocs.io/en/latest/C-API.html#_CPPv415DS_CreateStreamP10ModelStatePP14StreamingState) Currently, we give it the whole...

Yes. I had created these header files myself. Main idea of this project was to create the tutorial on how to integrate libs with flutter applications using dart ffi. If...

Hi @alish-sw, that is the Padding on top of every item that created the space in the example. You can refer to https://github.com/GeekyAnts/infinite-carousel-flutter/blob/main/example/lib/screens/horizontal.dart file `itemBuilder` section to look more on...

Hi @natintosh, this may be achieved with `SliverList` instead of `SliverFixedExtentList` that is currently used in the package code. I've explained about this in more details in this issue (https://github.com/GeekyAnts/infinite-carousel-flutter/issues/17#issuecomment-1756484873)....