Hacker News new | ask | show | jobs
by mixmastamyk 813 days ago
Neat! Looks like you are using Flutter for the web front-end, is that right?

I remember folks complaining about Flutter in the browser. Did that get fixed to an acceptable degree? And does that obviate the complexity of typical SPA framework on the frontend? With similar power?

1 comments

Right now, we're using Docusaurus, which has been working well: https://github.com/celest-dev/website

Though, Flutter Web has come a long ways recently, especially with the WASM work that's underway [1][2]. Flutter is very well positioned, I think, for web applications requiring a lot of interactivity and complex layouts--the DX is phenomenal. For static sites, it's very hard to beat a pure HTML/CSS/JS stack in terms of speed and optimization potential.

That being said, I think there's a good chance we'll see more work on Dart web frameworks going forward. Projects like Zap[3] and Jaspr[4] and doing great work in this area already. And it's safe to say we may see a Celest Web framework one day!

[1] https://flutter.dev/wasm

[2] https://flutterweb-wasm.web.app

[3] https://pub.dev/packages/zap

[4] https://pub.dev/packages/jaspr

Thanks, believe you answered my question, though I may not have been clear enough before.

I was asking about the demo app as shown in the video on the marketing site. The kinds of apps we'd be expected to build with this. Was not asking about the marketing site itself, though it seemed nice enough.

Ah, gotcha! The choice to use Flutter Web in the demo was just for presentational effect. Celest is built to work with all of the Flutter platforms equally.
Thanks. Is flutter required, or can we use Dart to return html, json, etc?
Flutter is currently required for the parent app, but I'll be lifting that requirement very soon. Stay tuned!