mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

* Update project.pbxproj files to say Flutter rather than Chromium Also, the templates now have an empty organization so that we don't cause people to give their apps a Flutter copyright. * Update the copyright notice checker to require a standard notice on all files * Update copyrights on Dart files. (This was a mechanical commit.) * Fix weird license headers on Dart files that deviate from our conventions; relicense Shrine. Some were already marked "The Flutter Authors", not clear why. Their dates have been normalized. Some were missing the blank line after the license. Some were randomly different in trivial ways for no apparent reason (e.g. missing the trailing period). * Clean up the copyrights in non-Dart files. (Manual edits.) Also, make sure templates don't have copyrights. * Fix some more ORGANIZATIONNAMEs
99 lines
3.1 KiB
Objective-C
99 lines
3.1 KiB
Objective-C
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#import "AppDelegate.h"
|
|
#import <Flutter/Flutter.h>
|
|
#import "GeneratedPluginRegistrant.h"
|
|
|
|
@implementation AppDelegate {
|
|
FlutterEventSink _eventSink;
|
|
}
|
|
|
|
- (BOOL)application:(UIApplication*)application
|
|
didFinishLaunchingWithOptions:(NSDictionary*)launchOptions {
|
|
[GeneratedPluginRegistrant registerWithRegistry:self];
|
|
FlutterViewController* controller =
|
|
(FlutterViewController*)self.window.rootViewController;
|
|
|
|
FlutterMethodChannel* batteryChannel = [FlutterMethodChannel
|
|
methodChannelWithName:@"samples.flutter.io/battery"
|
|
binaryMessenger:controller];
|
|
__weak typeof(self) weakSelf = self;
|
|
[batteryChannel setMethodCallHandler:^(FlutterMethodCall* call,
|
|
FlutterResult result) {
|
|
if ([@"getBatteryLevel" isEqualToString:call.method]) {
|
|
int batteryLevel = [weakSelf getBatteryLevel];
|
|
if (batteryLevel == -1) {
|
|
result([FlutterError errorWithCode:@"UNAVAILABLE"
|
|
message:@"Battery info unavailable"
|
|
details:nil]);
|
|
} else {
|
|
result(@(batteryLevel));
|
|
}
|
|
} else {
|
|
result(FlutterMethodNotImplemented);
|
|
}
|
|
}];
|
|
|
|
FlutterEventChannel* chargingChannel = [FlutterEventChannel
|
|
eventChannelWithName:@"samples.flutter.io/charging"
|
|
binaryMessenger:controller];
|
|
[chargingChannel setStreamHandler:self];
|
|
return [super application:application didFinishLaunchingWithOptions:launchOptions];
|
|
}
|
|
|
|
- (int)getBatteryLevel {
|
|
UIDevice* device = UIDevice.currentDevice;
|
|
device.batteryMonitoringEnabled = YES;
|
|
if (device.batteryState == UIDeviceBatteryStateUnknown) {
|
|
return -1;
|
|
} else {
|
|
return ((int)(device.batteryLevel * 100));
|
|
}
|
|
}
|
|
|
|
- (FlutterError*)onListenWithArguments:(id)arguments
|
|
eventSink:(FlutterEventSink)eventSink {
|
|
_eventSink = eventSink;
|
|
[[UIDevice currentDevice] setBatteryMonitoringEnabled:YES];
|
|
[self sendBatteryStateEvent];
|
|
[[NSNotificationCenter defaultCenter]
|
|
addObserver:self
|
|
selector:@selector(onBatteryStateDidChange:)
|
|
name:UIDeviceBatteryStateDidChangeNotification
|
|
object:nil];
|
|
return nil;
|
|
}
|
|
|
|
- (void)onBatteryStateDidChange:(NSNotification*)notification {
|
|
[self sendBatteryStateEvent];
|
|
}
|
|
|
|
- (void)sendBatteryStateEvent {
|
|
if (!_eventSink) return;
|
|
UIDeviceBatteryState state = [[UIDevice currentDevice] batteryState];
|
|
switch (state) {
|
|
case UIDeviceBatteryStateFull:
|
|
case UIDeviceBatteryStateCharging:
|
|
_eventSink(@"charging");
|
|
break;
|
|
case UIDeviceBatteryStateUnplugged:
|
|
_eventSink(@"discharging");
|
|
break;
|
|
default:
|
|
_eventSink([FlutterError errorWithCode:@"UNAVAILABLE"
|
|
message:@"Charging status unavailable"
|
|
details:nil]);
|
|
break;
|
|
}
|
|
}
|
|
|
|
- (FlutterError*)onCancelWithArguments:(id)arguments {
|
|
[[NSNotificationCenter defaultCenter] removeObserver:self];
|
|
_eventSink = nil;
|
|
return nil;
|
|
}
|
|
|
|
@end
|