Earlier quoted context omitted.
React doesn't work in the same way? I don't know much about it, but I assumed it does.
I'm not sure. Hopefully someone here can let us know. I didn't mean to imply that react doesn't work that way.
Show HN: Rust GUI Library via Flutter
101–108 of 108 posts
Re: Show HN: Rust GUI Library via Flutter
#102Does anyone know if Google plans to sunset the entire Flutter framework over time? Since they fired just about everybody internal who was working on it, I don't have a lot of confidence that Flutter will still have any Google support in 3-5 years. Has anyone talked about forking it and putting it under an independent foundation to ensure its long-term viability? Given Google's track record of long-term support for it…
Re: Show HN: Rust GUI Library via Flutter
#103Earlier quoted context omitted.
I’m curious what you don’t like about Dart? I thought I wouldn’t like it but I’ve found it surprisingly nice.
Off the top of my head: 1) Types on the left 2) Statement, not expression, based 3) No privacy modifiers (aka, underscores everywhere) 4) required semicolons 5) no language support for json (de)serialization, or, json boilerplate everywhere (yikes) I've tried to get into Flutter 3x now, and each time Dart has defeated me. Flutter is quite good though, so take the good with the bad, I just can't stomach Dart (yet).
Re: Show HN: Rust GUI Library via Flutter
#104How does this compare to rinf?
[0] https://github.com/cunarist/rinf-status-report
[1] https://www.reddit.com/r/FlutterDev/comments/1dnwagk/flutter...
Re: Show HN: Rust GUI Library via Flutter
#105Re: Show HN: Rust GUI Library via Flutter
#106Earlier quoted context omitted.
Not op but I’m developing an application with this exact approach as we speak, although my backend code is in Dart also. You can also do gRPC over Unix domain sockets too if you’re sticking with desktop but overall I really like this approach as it makes it trivial for me to move from desktop app to web app with only some minor config changes.
How is the dart backend story? I've not heard much about people using dart on the server, are there mature frameworks out there?
Re: Show HN: Rust GUI Library via Flutter
#107Earlier quoted context omitted.
Why conflate Google's customer facing products with their OSS technology contributions? It seems a weird comparison to make, as if their sales and marketing departments are the ones behind technology decisions. Angular came out of Google and hasn't gone anywhere. Also GoLang.. even GWT was supported well past its prime and is now maintained by the community. What evidence is there that they abandon languages and fram…
> Angular came out of Google and hasn't gone anywhere. I think you actually answered your own question. The difference is that Angular was already a hugely adopted and relatively simple piece of technology (the difference between a JavaScript framework and all the moving parts and pieces of Flutter/Dart is huge) Since the latter doesn’t have anywhere near the investment outside Google it’s not a fair comparison. The…
> The fear that if Google drops it, it will die are legitimate
I'm not trying to argue against the fact it would die or not. I'm mainly trying to understand why people think Google would abandon it. Abandoning Google Reader and abandoning Flutter or GoLang are _not_ the same in my eyes, and I can't think of any cases where Google has abandoned a technology rather than a consumer facing product in this fashion.
Re: Show HN: Rust GUI Library via Flutter
#108Earlier quoted context omitted.
>i.e. on every state update, the whole app gets rendered Yes, that's basically correct: >Calling setState notifies the framework that the internal state of this object has changed in a way that might impact the user interface in this subtree, which causes the framework to schedule a build for this State object.[0] The `build` method rebuilds the entire widget tree. So "the whole app" does not necessarily get re-rende…
React doesn't work in the same way? I don't know much about it, but I assumed it does.