mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

This auto-formats all *.dart files in the repository outside of the `engine` subdirectory and enforces that these files stay formatted with a presubmit check. **Reviewers:** Please carefully review all the commits except for the one titled "formatted". The "formatted" commit was auto-generated by running `dev/tools/format.sh -a -f`. The other commits were hand-crafted to prepare the repo for the formatting change. I recommend reviewing the commits one-by-one via the "Commits" tab and avoiding Github's "Files changed" tab as it will likely slow down your browser because of the size of this PR. --------- Co-authored-by: Kate Lovett <katelovett@google.com> Co-authored-by: LongCatIsLooong <31859944+LongCatIsLooong@users.noreply.github.com>
105 lines
2.6 KiB
Dart
105 lines
2.6 KiB
Dart
// Copyright 2014 The Flutter 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 'dart:ui';
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
|
|
/// Flutter code sample for [ServicesBinding.handleRequestAppExit].
|
|
|
|
void main() {
|
|
runApp(const ApplicationExitExample());
|
|
}
|
|
|
|
class ApplicationExitExample extends StatelessWidget {
|
|
const ApplicationExitExample({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const MaterialApp(home: Scaffold(body: Body()));
|
|
}
|
|
}
|
|
|
|
class Body extends StatefulWidget {
|
|
const Body({super.key});
|
|
|
|
@override
|
|
State<Body> createState() => _BodyState();
|
|
}
|
|
|
|
class _BodyState extends State<Body> with WidgetsBindingObserver {
|
|
bool _shouldExit = false;
|
|
String lastResponse = 'No exit requested yet';
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
WidgetsBinding.instance.addObserver(this);
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
WidgetsBinding.instance.removeObserver(this);
|
|
super.dispose();
|
|
}
|
|
|
|
Future<void> _quit() async {
|
|
final AppExitType exitType = _shouldExit ? AppExitType.required : AppExitType.cancelable;
|
|
setState(() {
|
|
lastResponse = 'App requesting ${exitType.name} exit';
|
|
});
|
|
await ServicesBinding.instance.exitApplication(exitType);
|
|
}
|
|
|
|
@override
|
|
Future<AppExitResponse> didRequestAppExit() async {
|
|
final AppExitResponse response = _shouldExit ? AppExitResponse.exit : AppExitResponse.cancel;
|
|
setState(() {
|
|
lastResponse = 'App responded ${response.name} to exit request';
|
|
});
|
|
return response;
|
|
}
|
|
|
|
void _radioChanged(bool? value) {
|
|
value ??= true;
|
|
if (_shouldExit == value) {
|
|
return;
|
|
}
|
|
setState(() {
|
|
_shouldExit = value!;
|
|
});
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Center(
|
|
child: SizedBox(
|
|
width: 300,
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: <Widget>[
|
|
RadioListTile<bool>(
|
|
title: const Text('Do Not Allow Exit'),
|
|
groupValue: _shouldExit,
|
|
value: false,
|
|
onChanged: _radioChanged,
|
|
),
|
|
RadioListTile<bool>(
|
|
title: const Text('Allow Exit'),
|
|
groupValue: _shouldExit,
|
|
value: true,
|
|
onChanged: _radioChanged,
|
|
),
|
|
const SizedBox(height: 30),
|
|
ElevatedButton(onPressed: _quit, child: const Text('Quit')),
|
|
const SizedBox(height: 30),
|
|
Text(lastResponse),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|