Abdelaziz Elrashed

Results 68 comments of Abdelaziz Elrashed

> Sadly this won't be possible because of Umbrel and also Tor. Both Umbrel and Tor operate on HTTP. I'm not sure why Umbrel supposes that a LAN network is...

> Umbrel manage certificates on their own, so we would probably need to wait for them to add support first. LAN network is not always safe, but is a lot...

BTW, on the `HTTP` side integrity and CSP still works but without the need for the `HTTPS` channel which will not be required anymore for the transformed app on `dist/http`,...

I'm facing the same wonder and I feel this is about [Isolate on Web](https://github.com/deakjahn/flutter_isolate_web). Isolate can work on Native not Web. While [Web Isolate](https://github.com/deakjahn/flutter_isolate_web) needs to run a worker as...

In fact, I don't know how to test a flutter library until I met this [post](https://stackoverflow.com/questions/51238420/how-to-use-local-flutter-package-in-another-flutter-application). So, I made a new working update. New registration way: ```dart import 'package:pwa/client.dart' as...

Ok captin, let's made a checklist for this.

New registration way now is: ```dart import 'package:pwa/pwa.dart' as pwa; void main() async { // register PWA ServiceWorker for offline caching. pwa.Client.create(); // ... } ```

New registration way now is: ```dart import 'package:pwa/pwa.dart'; void main() async { // register PWA ServiceWorker for offline caching. createPwaClient(); // ... } ```