You are only browsing one thread in the discussion! All comments are available on the post page.

Return

ericjmorey ,
@ericjmorey@programming.dev avatar

Disinvestment into Python, Flutter, and Dart is a clear signal that those tools are unimportant to Google. I won't be recommending that anyone use Dart or Flutter on new projects.

magic_lobster_party ,

Has anyone used Dart the past decade?

adam ,
@adam@doomscroll.n8e.dev avatar

Aside from everyone who's using flutter?

hector ,

That’s a terrible language IMO

Ephera ,

Just had to look at it out of curiosity and man, it looks like yet another C+=1. The code samples on Wikipedia contain one of those gaudy for-loops and a ternary, as if that was still peak language design four decades after C got published.

But what I seriously don't get: Why the hell did they develop Go then? That's yet another C+=1, with even some design similarities to Dart, e.g. it's garbage-collected but compiles to machine code.
Like, yeah, it wouldn't be the first time that different teams develop competing products at Google, but what kind of culture leads to there even being demand for two C+=1s?

hector ,

I can’t get enough of JSX (React) markup syntax personally, it’s just too simple and efficient that I don’t want to learn anything else ;)

To be fair, Go is very different from Dart and if they look like C it’s because they try to give you the abstraction with the memory safety which is pretty great.

But yeah Google is kinda the developer of useless languages. Even if Go is a banger of a technology

stevecrox ,

If you have the freedom try Typescript.

The tsx files are almost identical to jsx except for the need to define the field types your ingesting.

While thats a little extra work, it allows Visual Studio Code to perform deeper analysis and provide much more helpful contextual hints.

I grew to love JSX and tried TSX out of interest and you couldn't convince to go back to pure JS

hector ,

TSX Code

I actually use it in all of my projects it’s so delightful lol!

AMDIsOurLord ,

Dart has all the modern bell and whistles and bullshit syntax too, the Wikipedia samples hardly do it justice

samus7070 ,

It was originally meant as a better JavaScript and it was. It failed when none of the other browsers expressed interest in supporting it. It languished for a while and then was taken up by the Flutter team. At the time Flutter took it up it was somewhere around the level of Java 8 in features but not quite on par. Since then it’s seen some massive improvements to the type system and language. It’s completely null sound, not just null safe like Kotlin. It recently got records/tuples and one of the more capable pattern matching syntaxes I’ve ever seen in a functional imperative hybrid language. The next stable version of dart will introduce a compiler macro system that is very promising. The syntax isn’t always the prettiest due to it trying to not totally break old code. I do think that it offers a wide range of modern language features that competes heavily with Swift and Kotlin in the mobile space.

hector ,

Those are fair arguments, I’ll check Dart again. I think what really didn’t click for me, in contrary of React Native is that the code, and syntax are not very flexible.

I’m pretty good at Typescript and I can make some beautiful reusable code with minimal efforts. This makes it so fast to build apps and I just don’t feel that in Dart.

frezik ,

I sorta forgot it existed.

huginn ,

You shouldn't have ever been recommending dart or flutter.

Python ain't going anywhere tho

ericjmorey ,
@ericjmorey@programming.dev avatar

You shouldn’t have ever been recommending dart or flutter.

Why not?

huginn ,

I'm mostly just biased because I do native mobile development but flutter has always seemed like a false economy to me. You're trying to build cross platform but it'll take more than 2x as long as building each platform to get the same quality of experience. So either you have a shittier experience or you take even longer than true native dev.

But I'm obviously very biased here.

jacksilver ,

I've used it before and it's got it's pros and cons. Ultimately the big thing is not all apps need to be the "killer app". Some apps are pretty simple, so a one size fits all can be nice. It's definitely not the same as developing natively, but for small teams/apps it's not too bad.

GissaMittJobb ,

If you're prioritizing cost, you should probably already be building a web application imo. There's very few cases where I would recommend cheaping out and building a native app, it's just kind of unsound.

GissaMittJobb ,

If you're prioritizing cost, you should probably already be building a web application imo. There's very few cases where I would recommend cheaping out and building a native app, it's just kind of unsound.

ericjmorey , (edited )
@ericjmorey@programming.dev avatar

It looks like your reply got submitted multiple times.

I agree with you now about preference for web apps, but that was not the case when Google started pushing Flutter.

GissaMittJobb ,

Looks like my Lemmy-client of choice did some retrying when I had poor connection, sorry about that.

I think trying to go cheap on native apps was always kind of a fool's errand, tbh. Cordova, Xamarin, React Native and so on - all pretty sub-par solutions leading to poor experience without actually materializing the desired savings.

GissaMittJobb ,

Looks like my Lemmy-client of choice did some retrying when I had poor connection, sorry about that.

I think trying to go cheap on native apps was always kind of a fool's errand, tbh. Cordova, Xamarin, React Native and so on - all pretty sub-par solutions leading to poor experience without actually materializing the desired savings.

GissaMittJobb ,

Looks like my Lemmy-client of choice did some retrying when I had poor connection, sorry about that.

I think trying to go cheap on native apps was always kind of a fool's errand, tbh. Cordova, Xamarin, React Native and so on - all pretty sub-par solutions leading to poor experience without actually materializing the desired savings.

GissaMittJobb ,

If you're prioritizing cost, you should probably already be building a web application imo. There's very few cases where I would recommend cheaping out and building a native app, it's just kind of unsound.

GissaMittJobb ,

If you're prioritizing cost, you should probably already be building a web application imo. There's very few cases where I would recommend cheaping out and building a native app, it's just kind of unsound.

GissaMittJobb ,

If you're prioritizing cost, you should probably already be building a web application imo. There's very few cases where I would recommend cheaping out and building a native app, it's just kind of unsound.

GissaMittJobb ,

If you're prioritizing cost, you should probably already be building a web application imo. There's very few cases where I would recommend cheaping out and building a native app, it's just kind of unsound.

AMDIsOurLord ,

Flutter can be socialized for mobile OR desktop OR web. Having all three in a codebase requires lots of code and alternative layouts to properly handle each platform. It's not a "one size fits all" solution, actually to the absolute contrary it's a solution that you have to tailor to the UI you want to build.

I'm making desktop apps with Flutter (it's awesome) and my apps can't ever possibly hope to run on mobile. I'd have to remake most of the damn thing in order to make layouts for mobile.

huginn ,

Right but instead of a toy language there's Kotlin which is already multiplatform.

I just struggle to see why another language needed to be invented to do this.

AMDIsOurLord ,

Dart does some things better than Kotlin and KMP is a joke compared to Flutter

Trust me on this and go learn it yourself

Also Dart compiles to machine code, Kotlin is JVM

Ephera ,

I would argue so, because Google has quite a reputation for killing projects: https://killedbygoogle.com

Especially with a programming language or framework, you don't want to invest in it, only to find out that it's going on the chopping block.

xuniL ,

Even if Google laid off staff for the Flutter and Dart team, I don't think those two will be going anywhere any time soon.
Mostly because a huge majority Android ecosystem is based on them, still a stupid decisions of them.

I hope this doesn't age like milk.

FizzyOrange ,

Python is going to die eventually. It's too slow and the infrastructure is too painful for it to survive super long term.

It's ridiculous popular now though so it's going to take decades to die down.

CodingCarpenter ,

Sass won't be too happy

umbrella ,
@umbrella@lemmy.ml avatar

Flutter

looking at you, canonical.

ericjmorey ,
@ericjmorey@programming.dev avatar

I'm not sure how cononical is connected to this.

umbrella , (edited )
@umbrella@lemmy.ml avatar

they pledged to adopt flutter heavily in ubuntu's apps, in partnership with google. they even took like a couple cycles to port their entire installer and snap store to it.

ericjmorey ,
@ericjmorey@programming.dev avatar

Interesting. This wouldn't be the first time that they pushed forward with tools that were later abandoned due to lack of uptake outside of the Ubuntu ecosystem if it comes to that.

umbrella ,
@umbrella@lemmy.ml avatar

they pledged, with google's backing no less, to focus on it to develop ubuntu apps. they even spent a few of cycles working on porting their installer and snap store to it.

ericjmorey ,
@ericjmorey@programming.dev avatar

OOF

DeprecatedCompatV2 ,

I won't be recommending that anyone use Dart or Flutter on new projects.

You seem to think Google cares at all. Android has been languishing and Flutter is lightyears ahead. KMP is junk compared to what Flutter has accomplished with a fraction of the bells and whistles.

ericjmorey ,
@ericjmorey@programming.dev avatar

You seem to think Google cares at all.

Odd conclusion to draw. I'm simply not inclined to recommend tools that are not going to be supported by the organization that created them. Development ecosystems are important when planning a project.

DeprecatedCompatV2 , (edited )

What I mean to say is that Google isn't invested in native android either. It's been repeatedly strip mined by first-timers looking for a quick promotion and left to burn.

Things got so bad that Google gave up on native Views and created Jetpack Compose, which has been a source of many complaints related to performance.

In 2024 Flutter has instant hot-reload, and the "native" (but 100% bundled) solution still requires a complete reinstall on the device. In fact, Dart can compile to native code (or JIT) without an issue, yet Kotlin Native is barely in GA in the new compiler support has been lagging while the new compiler isn't out of beta and is still poorly supported by tooling.

Consider the absurdity: React Native is the only true native framework out of RN, Jetpack Compose, and Flutter. And all of this barely scratches the surface of the tooling problems that Flutter 99% avoids by allowing development on desktop, web or iOS simulator.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • programming@programming.dev
  • random
  • All magazines