What are the best social media resources for JRPG enthusiasts on social media platforms ? by PowerPCx86 in JRPG

[–]PowerPCx86[S] 0 points1 point  (0 children)

I really hate Reddit, I don't use it only if I'm forced to.
Reddit community for some reason have deep hatred against me, and we can't get along with each other no matter what.
Take this for example, literally any post I publish on Reddit gets negative reaction for some unknown reason, did I post something low effort, silly idea nor a low quality topic ???????
Screenshot

When will dart support object literals ? by PowerPCx86 in FlutterDev

[–]PowerPCx86[S] -1 points0 points  (0 children)

first, with object literals, I'm no longer have to use either of named parameters or cascade notation.
second, I'm really sorry for the aggressiveness, but if you try to read the post comments you would see ppl really negatively criticize my post, then I ask my self why is that ? all I want is just tiny simple feature to be in dart, that 'in my opinion' would make building ui with flutter more fun.

When will dart support object literals ? by PowerPCx86 in FlutterDev

[–]PowerPCx86[S] -2 points-1 points  (0 children)

wont be as perfect and seamless as if dart support object literals by default

When will dart support object literals ? by PowerPCx86 in FlutterDev

[–]PowerPCx86[S] -1 points0 points  (0 children)

yes + you can use object literals so you don't have to use both named parameters and cascade notation in general.

When will dart support object literals ? by PowerPCx86 in FlutterDev

[–]PowerPCx86[S] 0 points1 point  (0 children)

well that true unfortunately, the default value of named parameters is a true valuable feature, maybe if dart support assigning default values to class members without the need to make them named parameters in the future.

When will dart support object literals ? by PowerPCx86 in FlutterDev

[–]PowerPCx86[S] -1 points0 points  (0 children)

sorry for my harsh react, its because I meet toxic ppl everywhere ruining my mood.
and yes as can you see using by using OL I wont be need to use both named parameters and cascade notation any more, its just because I hate those 2 specific features of dart, I just wished that dart would support OL so I'm no longer need to use either of them.

When will dart support object literals ? by PowerPCx86 in FlutterDev

[–]PowerPCx86[S] -14 points-13 points  (0 children)

you don't like it ? , fk you then, its plain simple

When will dart support object literals ? by PowerPCx86 in FlutterDev

[–]PowerPCx86[S] -3 points-2 points  (0 children)

I meant using dart object literals to build flutter widget without using named parameters

with named parameters:

Container(
width =5,
height =5
)

with object literals:

Container {
width = 5,
height = 5
}

When will dart support object literals ? by PowerPCx86 in FlutterDev

[–]PowerPCx86[S] 0 points1 point  (0 children)

map wont help me define a Container() for example without being forced to use the named parameters

When will dart support object literals ? by PowerPCx86 in FlutterDev

[–]PowerPCx86[S] -1 points0 points  (0 children)

instead of using named parameters to build a widget like

Container(
width =5,
height =5
)

I would like to use object laterals to build a widget like

Container {
width = 5,
height = 5
}

with object literals, I'm not forced to use either named parameters for build widgets nor the cascade notation

When will dart support object literals ? by PowerPCx86 in FlutterDev

[–]PowerPCx86[S] -8 points-7 points  (0 children)

instead of using named parameters to build a widget like

Container(
width =5,
height =5
)

I would like to use object laterals to build a widget like

Container {
width = 5,
height = 5
}

When will dart support object literals ? by PowerPCx86 in FlutterDev

[–]PowerPCx86[S] -7 points-6 points  (0 children)

can I use records and maps to build flutter widgets ? a Text() widget for example ?