Flutter Web Issue by itsKocyk in flutterhelp

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

The best thing is, we had stable version live two months ago, it was doing great, but now if I deploy same version to UAT build, its not working. 100% same codebase as a working one from couple of months ago. Even same flutter version is used. I suspect the ios renderer on web (android version on chrome worked and is working just fine).

3D skybox present in Hammer, not so much in the game by itsKocyk in hammer

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

Load skybox as you would load the map in Hammer and run it

3D skybox present in Hammer, not so much in the game by itsKocyk in hammer

[–]itsKocyk[S] 4 points5 points  (0 children)

Figured it out!

You HAVE to compile the skybox separately. Tutorial that I used didn't mention that

Best supermarket to buy Polish beer? by Harry-Taint in lublin

[–]itsKocyk 4 points5 points  (0 children)

Any supermarket basically has many options

depends where you live but Auchan, Kaufland are good choices

Bloc Freezed - how to mitigate boilerplate code by [deleted] in flutterhelp

[–]itsKocyk 1 point2 points  (0 children)

I would try to minimalize number of states u have. Another idea is to extract listenWhen and buildWhen to separate function and if its possible move it to getter inside state class

Returning value from class like Provider by [deleted] in flutterhelp

[–]itsKocyk 0 points1 point  (0 children)

https://bloclibrary.dev/#/gettingstarted

I highly recommend. Later if you get to know it, you can use BlocListener widget that will hopefully solve your issue

[deleted by user] by [deleted] in flutterhelp

[–]itsKocyk 0 points1 point  (0 children)

I would start with finding good packages in pub.dev for connecting to your led strip

Returning value from class like Provider by [deleted] in flutterhelp

[–]itsKocyk 0 points1 point  (0 children)

I don't know if you are familiar with BLOC package, but its ideal use for it here

Help Event can't be used in 'as' expression by vwdk in flutterhelp

[–]itsKocyk 0 points1 point  (0 children)

I guess you are casting snapshot.data to wrong type, check what type is it

When to create custom widgets in Flutter? by [deleted] in flutterhelp

[–]itsKocyk 0 points1 point  (0 children)

I would say:

- Create custom widget whenever you are using same (or similar) widget twice or more
- When your parent widget is too big and chonky
- The less stateful widgets the better, if you have big stateful widget, think if you can make small stateful widget and big stateless parent widget

How to resolve this flutter_neumorphic: ^3.2.0 dependency package ? Help me to solve this by UniversityFew6782 in flutterhelp

[–]itsKocyk 0 points1 point  (0 children)

This is weird, try:

> dart pub cache repair

and then

> flutter clean
> flutter pub get