| // 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 'package:android_intent/android_intent.dart'; |
| import 'package:flutter/material.dart'; |
| import 'package:platform/platform.dart'; |
| |
| void main() { |
| runApp(new MyApp()); |
| } |
| |
| class MyApp extends StatelessWidget { |
| // This widget is the root of your application. |
| @override |
| Widget build(BuildContext context) { |
| return new MaterialApp( |
| title: 'Flutter Demo', |
| theme: new ThemeData( |
| primarySwatch: Colors.blue, |
| ), |
| home: new MyHomePage(), |
| ); |
| } |
| } |
| |
| class MyHomePage extends StatelessWidget { |
| void _createAlarm() { |
| final AndroidIntent intent = const AndroidIntent( |
| action: 'android.intent.action.SET_ALARM', |
| arguments: const <String, dynamic>{ |
| 'android.intent.extra.alarm.DAYS': const <int>[2, 3, 4, 5, 6], |
| 'android.intent.extra.alarm.HOUR': 21, |
| 'android.intent.extra.alarm.MINUTES': 30, |
| 'android.intent.extra.alarm.SKIP_UI': true, |
| 'android.intent.extra.alarm.MESSAGE': 'Create a Flutter app', |
| }, |
| ); |
| intent.launch(); |
| } |
| |
| @override |
| Widget build(BuildContext context) { |
| Widget body; |
| if (const LocalPlatform().isAndroid) { |
| body = new InkWell( |
| child: const Text('Tap here to set an alarm\non weekdays at 9:30pm.'), |
| onTap: _createAlarm, |
| ); |
| } else { |
| body = const Text('This plugin only works with Android'); |
| } |
| return new Scaffold( |
| appBar: new AppBar( |
| title: const Text('Plugin example app'), |
| ), |
| body: new Center(child: body), |
| ); |
| } |
| } |