如何使状态栏在抖动中透明?

时间:2019-02-17 11:53:56

标签: mobile dart flutter

我为此找到的解决方案之一。

SystemChrome.setSystemUIOverlayStyle(
        SystemUiOverlayStyle(statusBarColor: Colors.transparent));

1 个答案:

答案 0 :(得分:0)

AFAIK,您找到的那个实际上是更好的解决方案。您可以从 Flutter documentation 中查看。

<块引用>

setSystemUIOverlayStyle 方法

void setSystemUIOverlayStyle (
SystemUiOverlayStyle style
)

指定用于可见的系统覆盖的样式 (如果有的话)。

我写了一个基本的例子来检查它的外观。

import 'package:flutter/material.dart';
import 'package:flutter/services.dart';

void main() {
  SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
    statusBarColor: Colors.transparent,
  ));
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  int _counter = 0;

  void _incrementCounter() {
    setState(() {
      _counter++;
    });
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        backgroundColor: Colors.blue,
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Text(
              'You have pushed the button this many times:',
            ),
            Text(
              '$_counter',
              style: Theme.of(context).textTheme.headline4,
            ),
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: _incrementCounter,
        tooltip: 'Increment',
        child: Icon(Icons.add),
      ),
    );
  }
}

输出:

enter image description here

关于大小,使用 Flutter 内置方案似乎比使用 3rd 方插件更好。您还可以采取一些措施来减小应用程序的大小。检查 this blog 以获取一些提示。总而言之,这些是上述博客中列出的您需要优化的项目:

<块引用>
  1. 图像资源
  2. 使用 Google 字体
  3. 图标
  4. 动态应用交付
  5. 缓存
  6. Proguard
  7. 使用特定的库

在文档中,您可以查看“Measuring your app's size”。由于大多数开发人员都关心应用的大小,因此 Flutter 提供了此文档。