How to keep application awake in flutter?

前端 未结 2 642
半阙折子戏
半阙折子戏 2020-12-09 07:58

How to keep an application from locking the screen in flutter?

Is there a flag to turn it off an on? Does flutter SDK expose this?

Something like keepA

2条回答
  •  我在风中等你
    2020-12-09 08:20

    I found plugin that does the job. https://pub.dartlang.org/packages/screen

    import 'package:screen/screen.dart';
    
    // Prevent screen from going into sleep mode:
    Screen.keepOn(true);
    

    You also need to set permission for android

    
    

提交回复
热议问题