bobatsar

Results 7 comments of bobatsar

Hey @jlnrrg did you find any way to calculate the targetSize automatically? I have a list of items and don't know the exact size yet.

I had the same issue. It seems the `load` and `loadAll` do only the prefetching from the assets and not the loading in the soundpool. To preload into the soundpool...

My current workaround is to manually get the max and min values and calculate the next interval. ```dart double roundNextInterval(double value, double interval) { if (value.isNegative) { return (value /...

I am now using https://github.com/hacnguyen1412/flutter_sheet_localization with the following entries in `pubspec.yaml` ``` dependencies: flutter_sheet_localization: git: url: [email protected]:hacnguyen1412/flutter_sheet_localization.git path: flutter_sheet_localization dev_dependencies: flutter_sheet_localization_generator: git: url: [email protected]:hacnguyen1412/flutter_sheet_localization.git path: flutter_sheet_localization_generator ``` Thanks @hacnguyen1412 for...

hey @imagic85, it seems https://github.blog/2023-03-23-we-updated-our-rsa-ssh-host-key/ is your problem. @MostafaElswefy I don't know why your errors appear here. Please make sure that `flutter_sheet_localization` is in the `dependencies` section and `flutter_sheet_localization_generator` is...

Hi @Taym95, the issue is, that even when setting the `logLevel` to `LogLevel.none` the string interpolation still happens. There is nothing is logged in the end but the calculations are...

Hi @BenelliFurtado, yes that's the same issue. I am currently working on it and it seems my PR will be merged soon.