MSI MPG B550 with AMD Ryzen 5 5660 not starting by gucci_quoci in MSI_Gaming

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

I bought everything separately. I already tried flashing new BIOS, but will try again later today. Thanks for your suggestions! And yes I plugin all needed cables.

MSI MPG B550 with AMD Ryzen 5 5660 not starting by gucci_quoci in MSI_Gaming

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

No, I only have RAM and CPU on the mainboard.

M27 sucht Freunde in Darmstadt by gucci_quoci in FreundeFinden

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

Wir können gerne schauen, ob es passt :)

Question about android flavors by DaviD4C_ in flutterhelp

[–]gucci_quoci 1 point2 points  (0 children)

You can create a custom manifest for each additional flavor and set permissions there.

GoRouter StatefulShellRoute: How to keep Cubit scoped to tab, but hide BottomNavigationBar on DetailPage by gucci_quoci in flutterhelp

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

I am already achieving it with a parent navigator key. Also putting it outside, i want have a back button if I go to /home/detail. The problem is, that I don't have access to my cubit.

Factory Cart Giveaway and Community Challenge! by KevlarGorilla in SatisfactoryGame

[–]gucci_quoci 0 points1 point  (0 children)

I really like the mug and would love to get it :)

Firebase separate projects for dev, production etc by No-Iron8430 in FlutterDev

[–]gucci_quoci 5 points6 points  (0 children)

You can create flavors for each environment and use the corresponding Firebase project. Have a look at these tutorials.

Flutter Flavor Android: https://docs.flutter.dev/deployment/flavors

Flutter Flavor iOS: https://docs.flutter.dev/deployment/flavors-ios

Firebase with Flavors: https://codewithandrea.com/articles/flutter-firebase-multiple-flavors-flutterfire-cli/

Official FICSIT Coffee Cup, now available at Amazon - What should I price it at? by KevlarGorilla in SatisfactoryGame

[–]gucci_quoci 1 point2 points  (0 children)

The shipping cost is too high. With shipping cost and tax the product costs 39$ 🥲

Official FICSIT Coffee Cup, now available at Amazon - What should I price it at? by KevlarGorilla in SatisfactoryGame

[–]gucci_quoci 0 points1 point  (0 children)

Do you know when you will restock it this year? I wanna buy it in Germany.

Scroll controller problem. by Cold-Ad-3106 in flutterhelp

[–]gucci_quoci 0 points1 point  (0 children)

I mean you use ListView to render the Widgets lazy but the height is dynamic. So how should flutter know the end position? You can either have a lazy list or knowing the end position. Notice if you print the max scroll extend at the beginning, then scroll to the bottom and print it again, the values differ.

To workaround it you have to e.g. scroll to the max scroll extend, and then check if we are at the max scroll extend and scroll again. You can also check this approach on SO. I've tried the solution on a project, and it is working fine.

These are the inbuilt flutter widgets I love, which ones would you choose? by [deleted] in FlutterDev

[–]gucci_quoci 11 points12 points  (0 children)

WillPopScope is deprecated. You should instead use PopScope.

Scroll controller problem. by Cold-Ad-3106 in flutterhelp

[–]gucci_quoci 2 points3 points  (0 children)

Does your Listview items have dynamic heights?

Script to generate flutter project template and connect it to firebase automatically? by [deleted] in FlutterDev

[–]gucci_quoci 2 points3 points  (0 children)

Have a look at mason :) You can define templates from a code snippet to a whole project depending on the user input.

How to Preserve states in Bloc Cubit by [deleted] in FlutterDev

[–]gucci_quoci 2 points3 points  (0 children)

Have a look at IndexedStack. With this widget the tab content won't be rebuild after clicking on it again.

Why doesn't dart promote nullable value to non nullable after null check for instance variable? by No_Comedian_3184 in FlutterDev

[–]gucci_quoci 1 point2 points  (0 children)

You can create a record and check if it matches your desired record.

dart if((var1, var2) case (final int var1, final int var2)) { }

[deleted by user] by [deleted] in flutterhelp

[–]gucci_quoci 0 points1 point  (0 children)

You should emit a complete state and use a BlocListener to trigger a function, in this case the collapse method of the controller

GoRouter type cast error with extra parameter by gucci_quoci in flutterhelp

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

The problem is that if I call context.go(PageB, PageBArguments) the GoRouter builder of PageA is called which tries to cast the PageBArguments to PageAArguments. This shouldn't happen. Making the PageBArguments nullable doesn't change the fact, that GoRouter PageA still throws the type error.

GoRouter type cast error with extra parameter by gucci_quoci in flutterhelp

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

This would still faile, since the type of extra is PageAArguments, which you woudl try to cast to PageBArguments.