效果图:
https://s33.aconvert.com/convert/p3r68-cdx67/lmhbo-7mv6u.gif
代码:
import ‘package:flutter/material.dart’;
class PopupMenu extends StatefulWidget {
@override
State createState() => _PopupMenuState();
}
class _PopupMenuState extends State {
Color bgColor = Colors.white;
GlobalKey anchorKey = GlobalKey();
@override
Widget build(BuildContext context) {
return GestureDetector(
child: Text(
‘张明月最近一直在加班,苦逼苦逼苦逼~~~’,
style: TextStyle(backgroundColor: bgColor,height: 1.5,fontSize: 15),
key:anchorKey ,
),
onLongPressStart: (detail) {
bgColor = Colors.grey;<