- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在构建一个通知用户祈祷时间的应用程序。我正在使用 adhan 包来计算时间并将其保存在共享首选项中。由于祈祷时间每 24 小时更改一次,因此我使用 workmanager 获取该特定时间的祈祷时间,并每 20 小时将其保存在共享偏好中。但是我正面临这个问题,有没有其他或更好的方法可以实现这一目标。
Launching lib/main.dart on ASUS X00T in debug mode...
✓ Built build/app/outputs/flutter-apk/app-debug.apk.
Connecting to VM Service at ws://127.0.0.1:44753/d5gE32RyvC4=/ws
I/.example.notif(14281): Waiting for a blocking GC ProfileSaver
E/flutter (14281): [ERROR:flutter/lib/ui/ui_dart_state.cc(186)] Unhandled Exception: Invalid argument(s) (input): Must not be null
[38;5;244mE/flutter (14281): #0 _RegExp.firstMatch (dart:core-patch/regexp_patch.dart:221:24)[39;49m
[38;5;244mE/flutter (14281): #1 DateTime.parse (dart:core/date_time.dart:266:23)[39;49m
[38;5;248mE/flutter (14281): #2 PrayerTime.getFajr[39;49m
E/flutter (14281): <asynchronous suspension>
[38;5;248mE/flutter (14281): #3 _GetPrayersPageState.loalData[39;49m
E/flutter (14281): <asynchronous suspension>
E/flutter (14281):
E/cutils-trace(14281): Error opening trace file: No such file or directory (2)
I/flutter (14281): getAndSavePrayerscallbackDispatcher
I/flutter (14281): 2021-03-25 13:07:32.419749+0530
I/flutter (14281): 2021-03-25 12:45:00.000+0530
I/flutter (14281): 2021-03-25 20:04:00.000+0530
I/flutter (14281): 2021-03-25 17:08:00.000+0530
I/flutter (14281): 2021-03-25 20:04:00.000+0530
E/flutter (14281): [ERROR:flutter/lib/ui/ui_dart_state.cc(186)] Unhandled Exception: NoSuchMethodError: The method 'zonedSchedule' was called on null.
E/flutter (14281): Receiver: null
E/flutter (14281): Tried calling: zonedSchedule(0, "Title", "Body", Instance of 'TZDateTime', Instance of 'NotificationDetails', androidAllowWhileIdle: true, uiLocalNotificationDateInterpretation: Instance of 'UILocalNotificationDateInterpretation')
[38;5;244mE/flutter (14281): #0 Object.noSuchMethod (dart:core-patch/object_patch.dart:54:5)[39;49m
[38;5;248mE/flutter (14281): #1 NotificationManager.zonedNotification.<anonymous closure>[39;49m
[38;5;248mE/flutter (14281): #2 NotificationManager.zonedNotification.<anonymous closure>[39;49m
[38;5;244mE/flutter (14281): #3 List.forEach (dart:core-patch/growable_array.dart:403:8)[39;49m
[38;5;248mE/flutter (14281): #4 NotificationManager.zonedNotification[39;49m
E/flutter (14281): <asynchronous suspension>
[38;5;248mE/flutter (14281): #5 callbackDispatcher.<anonymous closure>[39;49m
E/flutter (14281): <asynchronous suspension>
[38;5;244mE/flutter (14281): #6 MethodChannel._handleAsMethodCall[39;49m
E/flutter (14281): <asynchronous suspension>
[38;5;244mE/flutter (14281): #7 _DefaultBinaryMessenger.handlePlatformMessage[39;49m
E/flutter (14281): <asynchronous suspension>
E/flutter (14281):
I/chatty (14281): uid=10412(com.example.notify) 2.ui identical 3 lines
E/flutter (14281): [ERROR:flutter/lib/ui/ui_dart_state.cc(186)] Unhandled Exception: NoSuchMethodError: The method 'zonedSchedule' was called on null.
E/flutter (14281): Receiver: null
E/flutter (14281): Tried calling: zonedSchedule(0, "Title", "Body", Instance of 'TZDateTime', Instance of 'NotificationDetails', androidAllowWhileIdle: true, uiLocalNotificationDateInterpretation: Instance of 'UILocalNotificationDateInterpretation')
[38;5;244mE/flutter (14281): #0 Object.noSuchMethod (dart:core-patch/object_patch.dart:54:5)[39;49m
[38;5;248mE/flutter (14281): #1 NotificationManager.zonedNotification.<anonymous closure>[39;49m
[38;5;248mE/flutter (14281): #2 NotificationManager.zonedNotification.<anonymous closure>[39;49m
[38;5;244mE/flutter (14281): #3 List.forEach (dart:core-patch/growable_array.dart:403:8)[39;49m
[38;5;248mE/flutter (14281): #4 NotificationManager.zonedNotification[39;49m
E/flutter (14281): <asynchronous suspension>
[38;5;248mE/flutter (14281): #5 callbackDispatcher.<anonymous closure>[39;49m
E/flutter (14281): <asynchronous suspension>
[38;5;244mE/flutter (14281): #6 MethodChannel._handleAsMethodCall[39;49m
E/flutter (14281): <asynchronous suspension>
[38;5;244mE/flutter (14281): #7 _DefaultBinaryMessenger.handlePlatformMessage[39;49m
E/flutter (14281): <asynchronous suspension>
E/flutter (14281):
I/WM-WorkerWrapper(14281): Worker result FAILURE for Work [ id=0a8091e2-1677-4fc9-9fbd-79468e004d97, tags={ be.tramckrijte.workmanager.BackgroundWorker } ]
main.dart
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:notify/local_notification/manage_notification.dart';
import 'package:notify/prayer_times.dart';
import 'package:workmanager/workmanager.dart';
import 'package:timezone/timezone.dart' as tz;
const String uniqueName = "getPrayers";
const String taskName = "getAndSavePrayers";
void main() {
WidgetsFlutterBinding.ensureInitialized();
Workmanager.initialize(callbackDispatcher, isInDebugMode: true);
Workmanager.registerPeriodicTask(uniqueName, taskName,
initialDelay: Duration(minutes: 1),
frequency: Duration(hours: 20),
constraints: Constraints(
networkType: NetworkType.not_required,
requiresBatteryNotLow: false,
requiresCharging: false,
requiresDeviceIdle: false,
requiresStorageNotLow: false));
runApp(MyApp());
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'GetPrayer',
theme: ThemeData(
brightness: Brightness.dark,
primarySwatch: Colors.cyan,
),
home: GetPrayersPage(),
);
}
}
class GetPrayersPage extends StatefulWidget {
@override
_GetPrayersPageState createState() => _GetPrayersPageState();
}
class _GetPrayersPageState extends State<GetPrayersPage> {
tz.TZDateTime fajr;
tz.TZDateTime dhuhr;
tz.TZDateTime maghrib;
tz.TZDateTime asr;
tz.TZDateTime isha;
@override
void initState() {
super.initState();
loalData();
}
void loalData() async {
fajr = await PrayerTime.instance.getFajr();
dhuhr = await PrayerTime.instance.getdhuhr();
maghrib = await PrayerTime.instance.getmaghrib();
asr = await PrayerTime.instance.getasr();
isha = await PrayerTime.instance.getisha();
setState(() {});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Prayer times'),
elevation: 0.0,
),
body: Column(
mainAxisSize: MainAxisSize.min,
children: [
ListTile(
leading: Icon(Icons.calendar_today),
title: Text("Fajr"),
trailing: Text("${fajr.toString()}"),
),
ListTile(
leading: Icon(Icons.calendar_today),
title: Text("Dhuhr"),
trailing: Text("${dhuhr.toString()}"),
),
ListTile(
leading: Icon(Icons.calendar_today),
title: Text("Maghrib"),
trailing: Text("${maghrib.toString()}"),
),
ListTile(
leading: Icon(Icons.calendar_today),
title: Text("Asr"),
trailing: Text("${asr.toString()}"),
),
ListTile(
leading: Icon(Icons.calendar_today),
title: Text("Isha"),
trailing: Text("${isha.toString()}"),
),
],
),
bottomNavigationBar: Container(
child: ElevatedButton(
style: ButtonStyle(
minimumSize:
MaterialStateProperty.all(Size(double.infinity, 60))),
onPressed: () {
PrayerTime.instance.getPrayers();
},
child: Text("UPDATE"),
),
),
);
}
}
void callbackDispatcher() {
Workmanager.executeTask((task, inputData) async {
switch (task) {
case taskName:
PrayerTime.instance.getPrayers();
await NotificationManager().initNotificationManager();
await NotificationManager().zonedNotification();
await NotificationManager().showNotification();
break;
}
return Future.value(true);
});
print(taskName + "callbackDispatcher");
}
祈祷时间.dart
import 'package:adhan/adhan.dart';
import 'package:notify/local_notification/get_timezone_date.dart';
import 'package:shared_preferences/shared_preferences.dart';
import 'package:timezone/timezone.dart' as tz;
class PrayerTime {
static const String fajrKey = "fajr";
static const String sunriseKey = "sunrise";
static const String dhuhrKey = "dhuhr";
static const String asrKey = "asr";
static const String maghribKey = "maghrib";
static const String ishaKey = "maghrib";
PrayerTime._privateConstructor();
static final PrayerTime _instance = PrayerTime._privateConstructor();
static PrayerTime get instance => _instance;
List<String> prayerTimesList = [];
void getPrayers() async {
final myCoordinates = Coordinates(19.076090, 72.877426);
final params = CalculationMethod.karachi.getParameters();
params.madhab = Madhab.hanafi;
final prayerTimes = PrayerTimes.today(myCoordinates, params);
final datewa = DateTime.now().add(Duration(minutes: 5));
String _formatTime(DateTime time) {
return time.toIso8601String();
}
savePrayers(
fajr: _formatTime(datewa),
// fajr: _formatTime(prayerTimes.fajr),
dhuhr: _formatTime(prayerTimes.dhuhr),
asr: _formatTime(prayerTimes.asr),
maghrib: _formatTime(prayerTimes.maghrib),
isha: _formatTime(prayerTimes.isha),
);
}
void savePrayers({
String fajr,
String dhuhr,
String asr,
String maghrib,
String isha,
}) async {
SharedPreferences prefs = await SharedPreferences.getInstance();
await prefs.setString(fajrKey, fajr);
await prefs.setString(dhuhrKey, dhuhr);
await prefs.setString(asrKey, asr);
await prefs.setString(maghribKey, maghrib);
await prefs.setString(ishaKey, isha);
}
Future<tz.TZDateTime> getFajr() async {
SharedPreferences prefs = await SharedPreferences.getInstance();
return convertToTZ(DateTime.parse(prefs.getString(fajrKey)));
}
Future<tz.TZDateTime> getdhuhr() async {
SharedPreferences prefs = await SharedPreferences.getInstance();
return convertToTZ(DateTime.parse(prefs.getString(dhuhrKey)));
}
Future<tz.TZDateTime> getasr() async {
SharedPreferences prefs = await SharedPreferences.getInstance();
return convertToTZ(DateTime.parse(prefs.getString(asrKey)));
}
Future<tz.TZDateTime> getmaghrib() async {
SharedPreferences prefs = await SharedPreferences.getInstance();
return convertToTZ(DateTime.parse(prefs.getString(maghribKey)));
}
Future<tz.TZDateTime> getisha() async {
SharedPreferences prefs = await SharedPreferences.getInstance();
return convertToTZ(DateTime.parse(prefs.getString(ishaKey)));
}
}
manage_notification.dart
import 'dart:typed_data';
import 'package:flutter/material.dart';
import 'package:flutter_local_notifications/flutter_local_notifications.dart';
import 'package:notify/prayer_times.dart';
import 'package:timezone/timezone.dart' as tz;
class NotificationManager {
FlutterLocalNotificationsPlugin flutterLocalNotificationsPlugin;
AndroidInitializationSettings initializationSettingsAndroid;
IOSInitializationSettings initializationSettingsIOS;
InitializationSettings initializationSettings;
/// Initializing FlutterLocalNotificationsPlugin.
Future initNotificationManager() async {
flutterLocalNotificationsPlugin = FlutterLocalNotificationsPlugin();
initializationSettingsAndroid =
AndroidInitializationSettings('ic_launcher');
initializationSettingsIOS = IOSInitializationSettings();
initializationSettings = InitializationSettings(
android: initializationSettingsAndroid, iOS: initializationSettingsIOS);
await flutterLocalNotificationsPlugin.initialize(initializationSettings);
}
Future<void> zonedNotification() async {
/// List of prayer times.
List<tz.TZDateTime> _times = [
await PrayerTime.instance.getFajr(),
await PrayerTime.instance.getdhuhr(),
await PrayerTime.instance.getmaghrib(),
await PrayerTime.instance.getasr(),
await PrayerTime.instance.getisha(),
];
/// Vibration pattern.
var vibrationPattern = Int64List(4);
vibrationPattern[0] = 0;
vibrationPattern[1] = 1000;
vibrationPattern[2] = 5000;
vibrationPattern[3] = 2000;
/// Android Specifics.
var androidPlatformChannelSpecifics = AndroidNotificationDetails(
"0", "channel Name", "channel Description",
icon: 'ic_launcher',
sound: RawResourceAndroidNotificationSound("slow_spring_board"),
largeIcon: DrawableResourceAndroidBitmap('ic_launcher'),
vibrationPattern: vibrationPattern,
autoCancel: false,
enableLights: true,
playSound: true,
color: Colors.green,
ledColor: const Color.fromARGB(255, 255, 0, 0),
ledOnMs: 1000,
ledOffMs: 500);
/// iOS Specifics.
IOSNotificationDetails iOSPlatformChannelSpecifics =
IOSNotificationDetails(sound: 'slow_spring_board.aiff');
/// Platform channel specifics.
NotificationDetails platformChannelSpecifics = NotificationDetails(
android: androidPlatformChannelSpecifics,
iOS: iOSPlatformChannelSpecifics);
/// ZonedSchedule
_times.forEach((element) async {
await flutterLocalNotificationsPlugin.zonedSchedule(
0, "Title", "Body", element, platformChannelSpecifics,
uiLocalNotificationDateInterpretation:
UILocalNotificationDateInterpretation.absoluteTime,
androidAllowWhileIdle: true);
});
}
Future<void> showNotification() async {
var androidPlatformChannelSpecifics = AndroidNotificationDetails(
"1", 'channel name', 'channel description',
importance: Importance.high, priority: Priority.high, ticker: 'ticker');
var iOSPlatformChannelSpecifics = IOSNotificationDetails();
var platformChannelSpecifics = NotificationDetails(
android: androidPlatformChannelSpecifics,
iOS: iOSPlatformChannelSpecifics);
await flutterLocalNotificationsPlugin.show(
0, 'plain title', 'plain body', platformChannelSpecifics,
payload: 'item x');
}
}
get_timezone.dart
import 'package:timezone/data/latest.dart';
import 'package:timezone/timezone.dart' as tz;
import 'package:flutter_native_timezone/flutter_native_timezone.dart';
class TimeZone {
factory TimeZone() => _this ?? TimeZone._();
TimeZone._() {
initializeTimeZones();
}
static TimeZone _this;
Future<String> getTimeZoneName() async =>
FlutterNativeTimezone.getLocalTimezone();
Future<tz.Location> getLocation([String timeZoneName]) async {
if (timeZoneName == null || timeZoneName.isEmpty) {
timeZoneName = await getTimeZoneName();
}
return tz.getLocation(timeZoneName);
}
}
Future<tz.TZDateTime> convertToTZ(dateTime) async {
final timeZone = TimeZone();
String timeZoneName = await timeZone.getTimeZoneName();
final location = await timeZone.getLocation(timeZoneName);
final scheduledDate = tz.TZDateTime.from(dateTime, location);
print(scheduledDate.toString());
return scheduledDate;
}
flutter 医生
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 2.0.1, on Linux, locale en_US.UTF-8)
[✓] Android toolchain - develop for Android devices (Android SDK version 30.0.3)
[✓] Chrome - develop for the web
[!] Android Studio (not installed)
[✓] VS Code (version 1.54.3)
[✓] Connected device (2 available)
! Doctor found issues in 1 category.
pubspec.yaml *
version: 1.0.0+1
environment:
sdk: ">=2.7.0 <3.0.0"
dependencies:
flutter:
sdk: flutter
workmanager: ^0.2.3
shared_preferences: ^2.0.5
adhan: ^1.1.15
intl: ^0.17.0
background_location: ^0.4.1
flutter_local_notifications: 4.0.1+2
flutter_native_timezone: ^1.0.10
# The following adds the Cupertino Icons font to your application.
# Use the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.2
dev_dependencies:
flutter_test:
sdk: flutter
最佳答案
在 try/catch 中调用您的代码并查看错误并将您的实例设置为变量:
try {
PrayerTime.instance.getPrayers();
NotificationManager manager = new NotificationManager();
await manager.initNotificationManager();
await manager.zonedNotification();
await manager.showNotification();
} catch(e) {
print(e);
}
关于android - Flutter 工作管理器返回 "Worker result FAILURE for Work [ id=XXXXXxXXXXxXXXX tags={ be.tramckrijte.workmanager.BackgroundWorker } ]",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66795147/
我们与一位客户存在某种问题,该客户认为我们发送的 XML 文件中的两个版本的空标记之间存在语义差异(纯 XML 没有 HTML ..)。 他们期望: 我们发送: 我
我想计算文本中 pp/np/vp 的数量,但我不知道如何在 openNLP chunker 中识别 PP-tags/NP-tags/VP-tags?我已经尝试过这段代码,但它不起作用。 Chunker
从我正在阅读的代码的上下文来看,它看起来像 $("")创建一个标签,其中 $('')是一个搜索标签的选择器。这里发生了什么?实际上,我可能没有掌握第二个语法,但我确信我已经完成了 $('idName'
我正在使用 Builder::XmlMarkup 创建 xml。我想创建一个没有内容的标签,因为 api 强制我创建它。如果我使用博客 xml.tag do end 我得到了我想要的 但我希望它更短
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: Using the XHTML closing slash (/) on normal tags? Are
默认情况下, someXmlWriter.WriteElementString("my-tag", someString); 产生 我环顾四周XmlWriterSettings强制作者生成 的可能选
如何修改tag-it ui插件https://github.com/aehlke/tag-it (版本 v2.0)因此它只允许选择 x 个标签,以及如何仅允许“availableTags-option
我能够解析这样的内容: value 通过: File inputFile = new File("input.xml"); DocumentBuilderFactory dbFactory = Doc
我不太确定如何编写这个查询,它可以在一个查询中完成。案例如下: 我需要选择标签名称列表,并为每个标签获取最近标记的专辑信息。这意味着,如果用户创建名为“Pamela Anderson”的专辑并将该专辑
这个问题在这里已经有了答案: Where should I put tags in HTML markup? (21 个回答) JavaScript at bottom/top of web pa
Django 2 by Example 中的教程,我不明白: step (2): Why is `Count('tags')` **not** counting the total number of
我是 jekyll 的新手,正在构建我的网站。 我有一个“帖子”布局,我希望与帖子相关的所有标签都出现在左栏中。我遇到的问题是,使用 {{ page.tags }} 会返回一个未以逗号分隔且看起来很乱
如何将一个目录下的所有hash tag重写为slash tag? ( Apache ) http://www.domain.com/company/index#about => http://www.
在查询 Flickr API 并检查返回的标签时,我注意到我收到了未在 Web 界面上显示的其他标签。例如对于此图像: http://www.flickr.com/photos/77060598@N0
我有类似 的东西我想得到这个: <1> <2> 但我只想在 中应用它标签而不是其他任何地方。 我已经有了这个: $txt = $this->input->post('
我想删除 xxx yyyy zzz 用 php。但是,首先,我想控制字符串是否以 开头并以 结尾 是否有用于此目的的函数? if(string begins with '' and ends wi
在我的模板中加载自定义标签时出现此错误。我访问了许多关于此的主题,并且确保确认我没有犯一些常见错误: 包含标签的文件在 templatetags 中文件夹。 此 templatetags文件夹包含 _
API doc中没有关于构造函数的文档。我想了解SvgElement.tag()的用途/用例。 最佳答案 SvgElement.tag(String tag)构造函数为对应的SvgElement值创建
$('*').data('tag', "tagged"); $('li[tag=tagged]').length 返回零... 最佳答案 $('*').data('tag', "tagged"); $
下面的代码出错了。我该如何解决这个问题? {% block header %} {% endblock %} 错误输出: TemplateSyntaxError : Invalid bloc
我是一名优秀的程序员,十分优秀!