我只希望在打开应用程序时在屏幕上显示请求位置权限的提示(仅用于演示目的(。我不想使用任何包进行地理编码。
请提供此的颤振代码
如果它只用于演示,请使用警报对话框
Future<void> _showMyDialog() async {
return showDialog<void>(
context: context,
barrierDismissible: false, // user must tap button!
builder: (BuildContext context) {
return AlertDialog(
title: const Text('AlertDialog Title'),
content: SingleChildScrollView(
child: ListBody(
children: const <Widget>[
Text('This is a demo alert dialog.'),
Text('Would you like to approve of this message?'),
],
),
),
actions: <Widget>[
TextButton(
child: const Text('Approve'),
onPressed: () {
Navigator.of(context).pop();
},
),
],
);
},
);
}
有关警报对话框的详细信息https://api.flutter.dev/flutter/material/AlertDialog-class.html
请注意,此弹出窗口不会启用位置权限。它只用于演示