|
|
|
|
|
by ugotsta
131 days ago
|
|
Wow, the website excels at showcasing the framework! What are compiled binaries like with this and Dart? I've been building a sort of similar framework and engine in Nim, mostly because I can get binaries under 200Kb. I looked into implementing the concept in other languages but don't recall much with Dart. Also, how does this carry over to Flutter? Is this similar enough that minimal changes would be needed to move a TUI app into Flutter's graphical domain? |
|
Binaries in Dart are definitely larger than 200kb, I just AOT compiled one of the examples and it was ~7.4MB (arm64 MacOS). Dart has a few different targets it can compile to, but it generally requires a couple of MBs, as it packages the whole runtime.
Yeah, my goal definitely is to have to as close to Flutter where it makes sense. You should mostly be able to copy it over 1:1, with a couple of caveats (GUI and a TUI app have a few differences here and there).