remove setState

Signed-off-by: Sahil Yeole <sahilyeole93@gmail.com>
This commit is contained in:
Sahil Yeole 2023-11-04 14:50:04 +05:30
parent 203891c957
commit 0e702d8693

View File

@ -765,8 +765,6 @@ class PeerViewDropdown extends StatefulWidget {
}
class _PeerViewDropdownState extends State<PeerViewDropdown> {
RelativeRect menuPos = RelativeRect.fromLTRB(0, 0, 0, 0);
@override
Widget build(BuildContext context) {
final List<PeerUiType> types = [PeerUiType.grid, PeerUiType.tile, PeerUiType.list];
@ -806,6 +804,7 @@ class _PeerViewDropdownState extends State<PeerViewDropdown> {
))));
}
var menuPos = RelativeRect.fromLTRB(0, 0, 0, 0);
return _hoverAction(
context: context,
child: Tooltip(
@ -821,17 +820,14 @@ class _PeerViewDropdownState extends State<PeerViewDropdown> {
onTapDown: (details) {
final x = details.globalPosition.dx;
final y = details.globalPosition.dy;
setState(() {
menuPos = RelativeRect.fromLTRB(x, y, x, y);
});
showMenu(
context: context,
position: menuPos,
items: items,
elevation: 8,
);
menuPos = RelativeRect.fromLTRB(x, y, x, y);
},
onTap: () => {}
onTap: () => showMenu(
context: context,
position: menuPos,
items: items,
elevation: 8,
)
);
}
}