在Flutter中创建一个全局悬浮按钮可以使用Stack
和Positioned
小部件。以下是一个简单的示例代码:
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: Stack(
children: <Widget>[
// 这里是你的主要内容
Center(
child: Text(
'主要内容',
style: TextStyle(fontSize: 24),
),
),
// 全局悬浮按钮
Positioned(
right: 16,
bottom: 16 + MediaQuery.of(context).viewInsets.bottom,
child: Container(
decoration: BoxDecoration(
shape: BoxShape.circle,
color: Colors.blue,
),
child: IconButton(
icon: Icon(Icons.add),
onPressed: () {
// 按钮点击事件
print('Floating button tapped!');
},
),
),
),
],
),
),
);
}
}
这段代码创建了一个悬浮按钮,它将始终显示在屏幕的右下角,即使在滚动或键盘弹出时也是如此。按钮的点击事件可以根据需求进行自定义。