标签: flutter
在我应用程序的主要方法中,我将其放置
SystemChrome.setSystemUIOverlayStyle( SystemUiOverlayStyle( statusBarColor: Colors.transparent, statusBarIconBrightness: Brightness.dark, ) );
重新加载应用程序时,图标的亮度会暂时变暗,然后再次变亮。
为什么会这样? 我该如何解决这个问题?