An open API service indexing awesome lists of open source software.

https://github.com/abandoft/abutil

Abandoft commonly used functions collection, simplify the software development process.
https://github.com/abandoft/abutil

Last synced: 4 months ago
JSON representation

Abandoft commonly used functions collection, simplify the software development process.

Awesome Lists containing this project

README

          

# Abandoft常用工具类

## 判断系统平台

```dart
isWeb()

isIOS()
isAndroid()
isMobile()

isWindows()
isMacOS()
isLinux()
isDesktop()

isOHOS() // OpenHarmony
```

## 重启应用

```dart
Reboot(MyApp)

rebootApp();
```

## 检查更新时间

```dart
haveUpdate(int versionCode, int latestVersion)
mustUpdate(var latestUpdateTime, String updateTime)
```