mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
40 lines
1.5 KiB
Objective-C
40 lines
1.5 KiB
Objective-C
// Copyright 2016 The Chromium 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>
|
|
|
|
@implementation AppDelegate
|
|
- (BOOL)application:(UIApplication*)application
|
|
didFinishLaunchingWithOptions:(NSDictionary*)launchOptions {
|
|
FlutterViewController* controller =
|
|
(FlutterViewController*)self.window.rootViewController;
|
|
FlutterMethodChannel* batteryChannel = [FlutterMethodChannel
|
|
methodChannelNamed:@"battery"
|
|
binaryMessenger:controller
|
|
codec:[FlutterStandardMethodCodec sharedInstance]];
|
|
[batteryChannel setMethodCallHandler:^(FlutterMethodCall* call,
|
|
FlutterResultReceiver result) {
|
|
if ([@"getBatteryLevel" isEqualToString:call.method]) {
|
|
UIDevice* device = UIDevice.currentDevice;
|
|
device.batteryMonitoringEnabled = YES;
|
|
if (device.batteryState == UIDeviceBatteryStateUnknown) {
|
|
result(nil, [FlutterError errorWithCode:@"UNAVAILABLE"
|
|
message:@"Battery info unavailable"
|
|
details:nil]);
|
|
} else {
|
|
result([NSNumber numberWithInt:(int)(device.batteryLevel * 100)], nil);
|
|
}
|
|
} else {
|
|
result(nil, [FlutterError errorWithCode:@"UNKNOWN_METHOD"
|
|
message:@"Unknown battery method called"
|
|
details:nil]);
|
|
}
|
|
}];
|
|
return YES;
|
|
}
|
|
|
|
@end
|