forked from flutter/plugins
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathandroid_intent.dart
62 lines (56 loc) · 1.92 KB
/
android_intent.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// Copyright 2017 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 'dart:async';
import 'package:flutter/services.dart';
import 'package:meta/meta.dart';
import 'package:platform/platform.dart';
const String kChannelName = 'plugins.flutter.io/android_intent';
/// Flutter plugin for launching arbitrary Android Intents.
class AndroidIntent {
final String action;
final String category;
final String data;
final Map<String, dynamic> arguments;
final String package;
final MethodChannel _channel;
final Platform _platform;
/// Builds an Android intent with the following parameters
/// [action] refers to the action parameter of the intent.
/// [category] refers to the category of the intent, can be null.
/// [data] refers to the string format of the URI that will be passed to
/// intent.
/// [arguments] is the map that will be converted into an extras bundle and
/// passed to the intent.
const AndroidIntent({
@required this.action,
this.category,
this.data,
this.arguments,
this.package,
Platform platform,
}) : assert(action != null),
_channel = const MethodChannel(kChannelName),
_platform = platform ?? const LocalPlatform();
/// Launch the intent.
///
/// This works only on Android platforms. Please guard the call so that your
/// iOS app does not crash. Checked mode will throw an assert exception.
Future<Null> launch() async {
assert(_platform.isAndroid);
final Map<String, dynamic> args = <String, dynamic>{'action': action};
if (category != null) {
args['category'] = category;
}
if (data != null) {
args['data'] = data;
}
if (arguments != null) {
args['arguments'] = arguments;
}
if (package != null) {
args['package'] = package;
}
await _channel.invokeMethod('launch', args);
}
}