Shawn

Results 192 comments of Shawn

Well in some cases, you may not have many competitors or very specific content, and it's just important that content is actually crawled. Google will still load a poorly optimized...

> I complementary understand it. Unfortunately Flutter creates a one page app and all the files are compiled into one. This is ideal for back ends, admin panels or apps...

Not to mention, the bulk of size for any site is typically the images and fonts. Often the 1mb taken up by the script file will be

I think your instincts are correct here. Adding mounds of code to decouple all the blocs is just going to make things more complex and harder to debug. In your...

Just tested today and I'm not seeing an error in xcode 14, I don't think this is needed anymore?

> Yes with Network Images inside the `renderFlutterWidget` it would need to wait for the Network Image to be loaded. My plan is to provide a similar method of saving...

Interesting, do you need to do anything to deal with the asynchronous download time? Or can you just render NetworkImage directly? Or maybe you're relying on a cache hit since...

I ended up trying the base64 approach and it seems to be working well. In flutter: ```dart final bytes = await http.readBytes(Uri.parse(imageUrl)); final imageBase64 = base64Encode(bytes); HomeWidget.saveWidgetData('lastDiscoveredImageData', imageBase64); ``` In...