You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			| 
				
					
						
							 | 
			2 years ago | |
|---|---|---|
| .. | ||
| data | 2 years ago | |
| lib | 2 years ago | |
| .gitignore | 2 years ago | |
| README.md | 2 years ago | |
| analysis_options.yaml | 2 years ago | |
| pubspec.yaml | 2 years ago | |
		
			
				
				README.md
			
		
		
			
			
		
	
	wakelock_aurora
The Aurora implementation of wakelock.
Usage
This package is not an endorsed implementation of wakelock.
Therefore, you have to include wakelock_aurora alongside wakelock as dependencies in your pubspec.yaml file.
pubspec.yaml
dependencies:
  # wakelock: ^0.6.2 - Version is outdated
  wakelock:
    git:
      url: https://github.com/keygenqt/wakelock.git
      ref: wakelock_windows_git
      path: wakelock
      
  wakelock_aurora:
    git:
      url: https://gitlab.com/omprussia/flutter/flutter-plugins.git
      ref: master
      path: packages/wakelock/wakelock_aurora
*.dart
import 'package:wakelock/wakelock.dart';
// The following line will enable wakelock.
Wakelock.enable();
// The next line disables the wakelock again.
Wakelock.disable();