颤振条形码_扫描更改颜色

时间:2020-06-23 07:12:25

标签: flutter colors barcode

我正在尝试更改颤动barcode scanner的颜色:

enter image description here

我想更改顶部栏的黄色和灰色。

我已经尝试使用ScanOptions做些事情:

void barcode() async {

  var options = ScanOptions(
    
  );

  var result = await BarcodeScanner.scan();
  print(result.rawContent);

}

我在互联网上找不到任何东西。

谢谢您的帮助!

1 个答案:

答案 0 :(得分:0)

很遗憾,此barcode scanner没有用于更改“选项”菜单颜色的任何选项

但是如果您愿意,可以从android manifest中更改它: 在清单的应用程序标签中添加主题,并从主题更改popupMenu的颜色

 <application
        android:name="io.flutter.app.FlutterApplication"
        android:label="My App"
        android:theme="@style/LaunchTheme"
        android:icon="@mipmap/ic_launcher">
...