rhymelph / r_scan

📷🖨Flutter二维码&条形码扫描插件,支持相机、文件、链接、Uint8List类型扫描
https://juejin.im/post/5dd8efb1e51d452314438515
BSD 3-Clause "New" or "Revised" License
118 stars 77 forks source link

SystemChrome.setEnabledSystemUIOverlays is Depriciated #62

Open Faazlaeeq opened 3 months ago

Faazlaeeq commented 3 months ago

Error:

/C:/Users/FaazLaeeq/AppData/Local/Pub/Cache/hosted/pub.dev/r_scan-0.1.6+1/lib/src/r_scan_view.dart:38:18: Error: Member not found: 'SystemChrome.setEnabledSystemUIOverlays'. SystemChrome.setEnabledSystemUIOverlays([SystemUiOverlay.top]);

Solution:

change line 38 from this: SystemChrome.setEnabledSystemUIOverlays([SystemUiOverlay.top]); to this: SystemChrome.setEnabledSystemUIMode(SystemUiMode.manual, overlays: [SystemUiOverlay.top]);