Win a copy of Java Persistence with Spring Data and Hibernate this week in the Spring forum!
  • Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Tim Cooke
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • Junilu Lacar
  • Rob Spoor
  • Jeanne Boyarsky
Saloon Keepers:
  • Stephan van Hulst
  • Carey Brown
  • Tim Holloway
  • Piet Souris
Bartenders:

risk develop android app with flutter

 
Ranch Hand
Posts: 97
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello everyone,

In my office currently my senior build android app using flutter, but it cause so many bug when the app launching.

Q : does developing android app with flutter have so many risk of bug?

Q2 : Does developing android with kotlin a best solution?

please answer

Thanks.
 
Marshal
Posts: 77537
372
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Moved to our Android forum.

Please explain what sort of bugs you are creating.
 
Bartender
Posts: 7488
171
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can create great apps with any language, and you can create buggy apps with any language. In other words: the choice of language has nothing to do with how buggy an app is going to be.

Flutter only makes sense if you need to create both iOS and Android apps, AND you can justify having developers learn a language (Dart) that is otherwise little used. For Android-only, Kotlin is the language of choice.
 
Rancher
Posts: 660
10
Android Tomcat Server Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I just upgraded flutter to 2.0, lot of code have changed.
One of the example is the color of border
Before upgrade, we can assign as below
Now need change to

Assume I have  defined 100 Container with different color of border, this upgrade require me change the code one by one..
 
Tim Moores
Bartender
Posts: 7488
171
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Does your IDE not have regexp search-and-replace across all files? That should be able to handle this. Or if it has a Dart/Flutter plugin, it may have a refactoring that takes care of this.
 
Randy Tong
Rancher
Posts: 660
10
Android Tomcat Server Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I can't find a way to do it.Between there have lot of plugin have not been upgraded to null-safety which caused lot of dependency error. I think better stick to 1.22.6 version for now.
 
Greenhorn
Posts: 4
Firefox Browser Java Ubuntu
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Randy Tong,

I haven't upgraded to Flutter 2.0 yet but I don't think it's mandatory to use hex instead of Material's constant colors. You've probably used a conversion guide that prefers to use 0xff. Portability is maintained, there are a lot of projects in Flutter that use Material colors instead of hexadecimals so it would be a big mistake not to be able to implement them.
Surely you will find info on the Material website. Trying costs nothing, we write the code but a thorough reading of the various because it is always useful.
 
Why does your bag say "bombs"? The reason I ask is that my bag says "tiny ads" and it has stuff like this:
The Low Tech Laboratory Movie Kickstarter is LIVE NOW!
https://www.kickstarter.com/projects/paulwheaton/low-tech
reply
    Bookmark Topic Watch Topic
  • New Topic