0 purchases
system clock
system_clock #
Flutter timekeeping facilities, powered by dart:ffi.
support platforms: Android、iOS、Macos、Windows、 linux
web is fallback to DateTime.now()
Getting Started #
import 'package:system_clock/system_clock.dart';
void main() {
// Duration since boot, not counting time spent in deep sleep.
println("system uptime: ${SystemClock.uptime()}");
// Duration since boot, including time spent in sleep.
println("system elapsed realtime: ${SystemClock.elapsedRealtime()}");
}
copied to clipboard
Refs #
https://android.googlesource.com/platform/frameworks/base/+/56a2301/core/java/android/os/SystemClock.java
https://android.googlesource.com/platform/frameworks/base/+/master/core/jni/android_os_SystemClock.cpp
https://android.googlesource.com/platform/frameworks/native/+/android-4.2.2_r1/include/utils/Timers.h
https://android.googlesource.com/platform/system/core/+/master/libutils/Timers.cpp
https://github.com/boyan01/system_clock/issues/3#issue-710700921
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.