Flutter实现Android下的沉浸式状态栏

if (Platform.isAndroid) {

    SystemUiOverlayStyle systemUiOverlayStyle = SystemUiOverlayStyle(statusBarColor: Colors.transparent);

    SystemChrome.setSystemUIOverlayStyle(systemUiOverlayStyle);

  }

你可能感兴趣的:(Flutter实现Android下的沉浸式状态栏)