'How to disable flutter initialization progress indicator?
Is it possible to disable upper line progress indicator when Flutter loads web entry point? The thing is, it is blue and does not fit my app color theme.
Solution 1:[1]
it doesn't appear in release mode, just try this:
(optional) flutter create . (it's to create the web folder if you don't have it)
flutter build web
flutter run -d chrome --release
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Krupupakku |
