最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

debugging - Flutter doesn't render Windows app in debug mode - Stack Overflow

programmeradmin1浏览0评论

I've been trying to debug my Windows application, but it doesn't render properly. Meanwhile, the release version of the app works just fine. This is the debug view: Windows app with render problems

Coincidentally, this happened right after I added a main() method to a file other than main.dart.

I tried updating all dependencies, both Flutter and VS Build Tools, plus I ran flutter clean in the terminal, to no avail. Creating a new Flutter project doesn't cause the issue, though. I'm also using this .gitignore file, so checking out previous commits didn't solve the issue: /.gitignore

I've been trying to debug my Windows application, but it doesn't render properly. Meanwhile, the release version of the app works just fine. This is the debug view: Windows app with render problems

Coincidentally, this happened right after I added a main() method to a file other than main.dart.

I tried updating all dependencies, both Flutter and VS Build Tools, plus I ran flutter clean in the terminal, to no avail. Creating a new Flutter project doesn't cause the issue, though. I'm also using this .gitignore file, so checking out previous commits didn't solve the issue: https://github/flutter/flutter/blob/master/.gitignore

Share Improve this question asked Feb 21 at 1:12 Leonardo PechanskyLeonardo Pechansky 111 silver badge1 bronze badge
Add a comment  | 

1 Answer 1

Reset to default 1

Normally, main() is called only once and serves as the entry point, it initializes Flutter and starts the app. Once the app starts, main() is not called again unless explicitly restarted.

main() can be called multiple times in 3 cases

1- In Flutter debug mode(during development), when you do a Hot Restart (NOT IN DESKTOP DEV), the app fully restarts and calls main() again.

2- One can explicitly call main() inside the app, I do not recommend for security..multiple instances of the app running in memory..

3- After a Crash

Solutions:

1- for desktop apps try to restarted manually to recall the main().

2- call runApp() multiple times without restarting main(), but it will replace the widget tree

发布评论

评论列表(0)

  1. 暂无评论