ExtraSettings/move_to_background
アプリケーションをバックグラウンドに送信するための Flutter プラグイン
- Stars
- 28
- Forks
- 84
- 最終プッシュ(UTC)
- 2024/02/07
- プロジェクト状態
- 公開中
言語JavaRubyDartObjective-C
技術トピック
使用している依存関係
依存関係一覧 2 件
- flutter
{"sdk":"flutter"} - flutter_test開発用
{"sdk":"flutter"}
元の README
以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。
README を開く / 閉じる
move_to_background
Flutter plugin for sending mobile applications to background. Supports iOS and Android.
Getting Started
Install it (pubspec.yaml)
move_to_background: <latest>
Import it
import 'package:move_to_background/move_to_background.dart';
Use it
MoveToBackground.moveTaskToBack();
Useful Scenario
Use with WillPopScope to send your application to the background when the user attempts to exit the app.
WillPopScope(
child: MaterialApp(...),
onWillPop: () async {
MoveToBackground.moveTaskToBack();
return false;
},
);
Note about using it for iOS
Quitting your application or sending it to the background programmatically is a violation of the iOS Human Interface Guidelines, which usually doesn't bode well for getting through the review process. Keep that in mind.