Gregory Conrad

Results 109 comments of Gregory Conrad

Also having the issue in the iOS16 simulator.

@deepak786 In my app, only one video is being loaded (but perhaps the way in which I do so causes some funky behavior under the hood). Can you share a...

That strikes me as a layout bug. I'll try and figure out exactly what the `player` widget given from the builder doesn't like.

@sarbagyastha This is actually extremely easy to recreate: 1. Create new flutter project 2. `flutter pub add youtube_player_iframe` 3. Change `_MyHomePageState` to the following: ```dart class _MyHomePageState extends State {...

@rohansohonee Thanks for that--that was probably my issue to begin with in my project. I am loading a video id async and because of that it wasn't available at the...

Here is my workaround (the key here is the regex with the `replaceAllMapped`): ```dart extension Expression on String { double evaluate(Map variables) { final cm = ContextModel(); for (final variable...

> What this issue involves will most likely be two bits: > > - new parameters on providers for decoding/encoding: > ```dart > final provider = SomeProvider( > (ref) {},...

Based on what @jason-simmons mentioned, I created the following python script to "fix" your custom font files to use the correct weights that flutter respects. Create a `src` directory and...

Hi! Looks like that PR is almost done; any idea of when milli might be up on crates.io? I am making a library for an embedded version of milli and...

I have some thoughts in relation to this since I have to do something similar over in [mimir](https://github.com/gregoryconrad/mimir). ## `obkv` When first interacting with milli, I disliked obkv. I was...