2022-07-29 16:47:24 +08:00
|
|
|
import 'package:contextmenu/contextmenu.dart';
|
2022-07-27 22:56:28 +08:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_hbb/utils/multi_window_manager.dart';
|
|
|
|
import 'package:get/get.dart';
|
|
|
|
|
|
|
|
import '../../common.dart';
|
|
|
|
import '../../models/model.dart';
|
|
|
|
import '../../models/peer_model.dart';
|
|
|
|
|
2022-07-28 14:06:02 +08:00
|
|
|
typedef PopupMenuItemsFunc = Future<List<PopupMenuItem<String>>> Function();
|
2022-07-29 12:03:24 +08:00
|
|
|
enum PeerType { recent, fav, discovered, ab }
|
2022-07-28 14:06:02 +08:00
|
|
|
|
2022-07-27 22:56:28 +08:00
|
|
|
class _PeerCard extends StatefulWidget {
|
|
|
|
final Peer peer;
|
2022-07-28 14:06:02 +08:00
|
|
|
final PopupMenuItemsFunc popupMenuItemsFunc;
|
2022-07-29 12:03:24 +08:00
|
|
|
final PeerType type;
|
2022-07-27 22:56:28 +08:00
|
|
|
|
2022-07-29 16:47:24 +08:00
|
|
|
_PeerCard({required this.peer,
|
|
|
|
required this.popupMenuItemsFunc,
|
|
|
|
Key? key,
|
|
|
|
required this.type})
|
2022-07-27 22:56:28 +08:00
|
|
|
: super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
_PeerCardState createState() => _PeerCardState();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// State for the connection page.
|
2022-07-29 16:47:24 +08:00
|
|
|
class _PeerCardState extends State<_PeerCard>
|
|
|
|
with AutomaticKeepAliveClientMixin {
|
2022-07-27 22:56:28 +08:00
|
|
|
var _menuPos;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2022-07-29 16:47:24 +08:00
|
|
|
super.build(context);
|
2022-07-27 22:56:28 +08:00
|
|
|
final peer = super.widget.peer;
|
|
|
|
var deco = Rx<BoxDecoration?>(BoxDecoration(
|
|
|
|
border: Border.all(color: Colors.transparent, width: 1.0),
|
|
|
|
borderRadius: BorderRadius.circular(20)));
|
|
|
|
return Card(
|
|
|
|
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(20)),
|
|
|
|
child: MouseRegion(
|
|
|
|
onEnter: (evt) {
|
|
|
|
deco.value = BoxDecoration(
|
|
|
|
border: Border.all(color: Colors.blue, width: 1.0),
|
|
|
|
borderRadius: BorderRadius.circular(20));
|
|
|
|
},
|
|
|
|
onExit: (evt) {
|
|
|
|
deco.value = BoxDecoration(
|
|
|
|
border: Border.all(color: Colors.transparent, width: 1.0),
|
|
|
|
borderRadius: BorderRadius.circular(20));
|
|
|
|
},
|
|
|
|
child: _buildPeerTile(context, peer, deco),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2022-07-29 16:47:24 +08:00
|
|
|
Widget _buildPeerTile(BuildContext context, Peer peer, Rx<BoxDecoration?> deco) {
|
2022-07-27 22:56:28 +08:00
|
|
|
return Obx(
|
2022-07-29 16:47:24 +08:00
|
|
|
() => Container(
|
2022-07-27 22:56:28 +08:00
|
|
|
decoration: deco.value,
|
|
|
|
child: Column(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
Expanded(
|
|
|
|
child: Container(
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
color: str2color('${peer.id}${peer.platform}', 0x7f),
|
|
|
|
borderRadius: BorderRadius.only(
|
|
|
|
topLeft: Radius.circular(20),
|
|
|
|
topRight: Radius.circular(20),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
child: Row(
|
|
|
|
children: [
|
|
|
|
Expanded(
|
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
Container(
|
|
|
|
padding: const EdgeInsets.all(6),
|
|
|
|
child: _getPlatformImage('${peer.platform}'),
|
|
|
|
),
|
|
|
|
Row(
|
|
|
|
children: [
|
|
|
|
Expanded(
|
2022-07-29 12:03:24 +08:00
|
|
|
child: FutureBuilder<String>(
|
|
|
|
future: gFFI.getPeerOption(peer.id, 'alias'),
|
|
|
|
builder: (_, snapshot) {
|
|
|
|
if (snapshot.hasData) {
|
|
|
|
final name = snapshot.data!.isEmpty
|
|
|
|
? '${peer.username}@${peer.hostname}'
|
|
|
|
: snapshot.data!;
|
|
|
|
return Tooltip(
|
|
|
|
message: name,
|
|
|
|
child: Text(
|
|
|
|
name,
|
|
|
|
style: TextStyle(
|
|
|
|
color: Colors.white70,
|
|
|
|
fontSize: 12),
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
overflow: TextOverflow.ellipsis,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
} else {
|
2022-07-29 16:47:24 +08:00
|
|
|
// alias has not arrived
|
|
|
|
return Center(
|
|
|
|
child: Text(
|
|
|
|
'${peer.username}@${peer.hostname}',
|
|
|
|
style: TextStyle(
|
|
|
|
color: Colors.white70,
|
|
|
|
fontSize: 12),
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
overflow: TextOverflow.ellipsis,
|
|
|
|
));
|
2022-07-29 12:03:24 +08:00
|
|
|
}
|
|
|
|
},
|
2022-07-27 22:56:28 +08:00
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
],
|
|
|
|
).paddingAll(4.0),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
children: [
|
|
|
|
Row(children: [
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.fromLTRB(0, 4, 8, 4),
|
|
|
|
child: CircleAvatar(
|
|
|
|
radius: 5,
|
|
|
|
backgroundColor:
|
2022-07-29 16:47:24 +08:00
|
|
|
peer.online ? Colors.green : Colors.yellow)),
|
2022-07-27 22:56:28 +08:00
|
|
|
Text('${peer.id}')
|
|
|
|
]),
|
|
|
|
InkWell(
|
|
|
|
child: Icon(Icons.more_vert),
|
|
|
|
onTapDown: (e) {
|
|
|
|
final x = e.globalPosition.dx;
|
|
|
|
final y = e.globalPosition.dy;
|
|
|
|
_menuPos = RelativeRect.fromLTRB(x, y, x, y);
|
|
|
|
},
|
|
|
|
onTap: () {
|
|
|
|
_showPeerMenu(context, peer.id);
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
).paddingSymmetric(vertical: 8.0, horizontal: 12.0)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Connect to a peer with [id].
|
|
|
|
/// If [isFileTransfer], starts a session only for file transfer.
|
|
|
|
void _connect(String id, {bool isFileTransfer = false}) async {
|
|
|
|
if (id == '') return;
|
|
|
|
id = id.replaceAll(' ', '');
|
|
|
|
if (isFileTransfer) {
|
|
|
|
await rustDeskWinManager.new_file_transfer(id);
|
|
|
|
} else {
|
|
|
|
await rustDeskWinManager.new_remote_desktop(id);
|
|
|
|
}
|
|
|
|
FocusScopeNode currentFocus = FocusScope.of(context);
|
|
|
|
if (!currentFocus.hasPrimaryFocus) {
|
|
|
|
currentFocus.unfocus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Show the peer menu and handle user's choice.
|
|
|
|
/// User might remove the peer or send a file to the peer.
|
|
|
|
void _showPeerMenu(BuildContext context, String id) async {
|
|
|
|
var value = await showMenu(
|
|
|
|
context: context,
|
|
|
|
position: this._menuPos,
|
2022-07-28 14:06:02 +08:00
|
|
|
items: await super.widget.popupMenuItemsFunc(),
|
2022-07-27 22:56:28 +08:00
|
|
|
elevation: 8,
|
|
|
|
);
|
|
|
|
if (value == 'remove') {
|
|
|
|
setState(() => gFFI.setByName('remove', '$id'));
|
2022-07-29 16:47:24 +08:00
|
|
|
() async {
|
2022-07-27 22:56:28 +08:00
|
|
|
removePreference(id);
|
|
|
|
}();
|
|
|
|
} else if (value == 'file') {
|
|
|
|
_connect(id, isFileTransfer: true);
|
2022-07-29 16:47:24 +08:00
|
|
|
} else if (value == 'add-fav') {} else if (value == 'connect') {
|
2022-07-27 22:56:28 +08:00
|
|
|
_connect(id, isFileTransfer: false);
|
|
|
|
} else if (value == 'ab-delete') {
|
|
|
|
gFFI.abModel.deletePeer(id);
|
|
|
|
await gFFI.abModel.updateAb();
|
|
|
|
setState(() {});
|
|
|
|
} else if (value == 'ab-edit-tag') {
|
|
|
|
_abEditTag(id);
|
2022-07-29 12:03:24 +08:00
|
|
|
} else if (value == 'rename') {
|
|
|
|
_rename(id);
|
2022-07-29 16:47:24 +08:00
|
|
|
} else if (value == 'unremember-password') {
|
|
|
|
await gFFI.bind.mainForgetPassword(id: id);
|
2022-07-27 22:56:28 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget _buildTag(String tagName, RxList<dynamic> rxTags,
|
|
|
|
{Function()? onTap}) {
|
|
|
|
return ContextMenuArea(
|
|
|
|
width: 100,
|
|
|
|
builder: (context) => [
|
|
|
|
ListTile(
|
|
|
|
title: Text(translate("Delete")),
|
|
|
|
onTap: () {
|
|
|
|
gFFI.abModel.deleteTag(tagName);
|
|
|
|
gFFI.abModel.updateAb();
|
|
|
|
Future.delayed(Duration.zero, () => Get.back());
|
|
|
|
},
|
|
|
|
)
|
|
|
|
],
|
|
|
|
child: GestureDetector(
|
|
|
|
onTap: onTap,
|
|
|
|
child: Obx(
|
2022-07-29 16:47:24 +08:00
|
|
|
() => Container(
|
2022-07-27 22:56:28 +08:00
|
|
|
decoration: BoxDecoration(
|
|
|
|
color: rxTags.contains(tagName) ? Colors.blue : null,
|
|
|
|
border: Border.all(color: MyTheme.darkGray),
|
|
|
|
borderRadius: BorderRadius.circular(10)),
|
|
|
|
margin: EdgeInsets.symmetric(horizontal: 4.0, vertical: 8.0),
|
|
|
|
padding: EdgeInsets.symmetric(vertical: 2.0, horizontal: 8.0),
|
|
|
|
child: Text(
|
|
|
|
tagName,
|
|
|
|
style: TextStyle(
|
|
|
|
color: rxTags.contains(tagName) ? MyTheme.white : null),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the image for the current [platform].
|
|
|
|
Widget _getPlatformImage(String platform) {
|
|
|
|
platform = platform.toLowerCase();
|
|
|
|
if (platform == 'mac os')
|
|
|
|
platform = 'mac';
|
|
|
|
else if (platform != 'linux' && platform != 'android') platform = 'win';
|
|
|
|
return Image.asset('assets/$platform.png', height: 50);
|
|
|
|
}
|
|
|
|
|
|
|
|
void _abEditTag(String id) {
|
|
|
|
var isInProgress = false;
|
|
|
|
|
|
|
|
final tags = List.of(gFFI.abModel.tags);
|
|
|
|
var selectedTag = gFFI.abModel.getPeerTags(id).obs;
|
|
|
|
|
|
|
|
DialogManager.show((setState, close) {
|
|
|
|
return CustomAlertDialog(
|
|
|
|
title: Text(translate("Edit Tag")),
|
|
|
|
content: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
Container(
|
|
|
|
padding: EdgeInsets.symmetric(horizontal: 16.0, vertical: 8.0),
|
|
|
|
child: Wrap(
|
|
|
|
children: tags
|
|
|
|
.map((e) => _buildTag(e, selectedTag, onTap: () {
|
2022-07-29 16:47:24 +08:00
|
|
|
if (selectedTag.contains(e)) {
|
|
|
|
selectedTag.remove(e);
|
|
|
|
} else {
|
|
|
|
selectedTag.add(e);
|
|
|
|
}
|
|
|
|
}))
|
2022-07-27 22:56:28 +08:00
|
|
|
.toList(growable: false),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Offstage(offstage: !isInProgress, child: LinearProgressIndicator())
|
|
|
|
],
|
|
|
|
),
|
|
|
|
actions: [
|
|
|
|
TextButton(
|
|
|
|
onPressed: () {
|
|
|
|
close();
|
|
|
|
},
|
|
|
|
child: Text(translate("Cancel"))),
|
|
|
|
TextButton(
|
|
|
|
onPressed: () async {
|
|
|
|
setState(() {
|
|
|
|
isInProgress = true;
|
|
|
|
});
|
|
|
|
gFFI.abModel.changeTagForPeer(id, selectedTag);
|
|
|
|
await gFFI.abModel.updateAb();
|
|
|
|
close();
|
|
|
|
},
|
|
|
|
child: Text(translate("OK"))),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
});
|
|
|
|
}
|
2022-07-29 12:03:24 +08:00
|
|
|
|
|
|
|
void _rename(String id) async {
|
|
|
|
var isInProgress = false;
|
|
|
|
var name = await gFFI.getPeerOption(id, 'alias');
|
|
|
|
if (widget.type == PeerType.ab) {
|
|
|
|
final peer = gFFI.abModel.peers.firstWhere((p) => id == p['id']);
|
|
|
|
if (peer == null) {
|
|
|
|
// this should not happen
|
|
|
|
} else {
|
|
|
|
name = peer['alias'] ?? "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
final k = GlobalKey<FormState>();
|
|
|
|
DialogManager.show((setState, close) {
|
|
|
|
return CustomAlertDialog(
|
|
|
|
title: Text(translate("Rename")),
|
|
|
|
content: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
Container(
|
|
|
|
padding: EdgeInsets.symmetric(horizontal: 16.0, vertical: 8.0),
|
|
|
|
child: Form(
|
|
|
|
key: k,
|
|
|
|
child: TextFormField(
|
|
|
|
controller: TextEditingController(text: name),
|
|
|
|
decoration: InputDecoration(border: OutlineInputBorder()),
|
|
|
|
onChanged: (newStr) {
|
|
|
|
name = newStr;
|
|
|
|
},
|
|
|
|
validator: (s) {
|
|
|
|
if (s == null || s.isEmpty) {
|
|
|
|
return translate("Empty");
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
onSaved: (s) {
|
|
|
|
name = s ?? "unnamed";
|
|
|
|
},
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Offstage(offstage: !isInProgress, child: LinearProgressIndicator())
|
|
|
|
],
|
|
|
|
),
|
|
|
|
actions: [
|
|
|
|
TextButton(
|
|
|
|
onPressed: () {
|
|
|
|
close();
|
|
|
|
},
|
|
|
|
child: Text(translate("Cancel"))),
|
|
|
|
TextButton(
|
|
|
|
onPressed: () async {
|
|
|
|
setState(() {
|
|
|
|
isInProgress = true;
|
|
|
|
});
|
|
|
|
if (k.currentState != null) {
|
|
|
|
if (k.currentState!.validate()) {
|
|
|
|
k.currentState!.save();
|
|
|
|
await gFFI.setPeerOption(id, 'alias', name);
|
|
|
|
if (widget.type == PeerType.ab) {
|
|
|
|
gFFI.abModel.setPeerOption(id, 'alias', name);
|
|
|
|
await gFFI.abModel.updateAb();
|
|
|
|
} else {
|
|
|
|
Future.delayed(Duration.zero, () {
|
|
|
|
this.setState(() {});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
setState(() {
|
|
|
|
isInProgress = false;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
child: Text(translate("OK"))),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
});
|
|
|
|
}
|
2022-07-29 16:47:24 +08:00
|
|
|
|
|
|
|
@override
|
|
|
|
bool get wantKeepAlive => true;
|
2022-07-27 22:56:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
abstract class BasePeerCard extends StatelessWidget {
|
|
|
|
final Peer peer;
|
2022-07-29 12:03:24 +08:00
|
|
|
final PeerType type;
|
|
|
|
|
|
|
|
BasePeerCard({required this.peer, required this.type, Key? key})
|
|
|
|
: super(key: key);
|
2022-07-27 22:56:28 +08:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2022-07-29 12:03:24 +08:00
|
|
|
return _PeerCard(
|
|
|
|
peer: peer,
|
|
|
|
popupMenuItemsFunc: _getPopupMenuItems,
|
|
|
|
type: type,
|
|
|
|
);
|
2022-07-27 22:56:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@protected
|
2022-07-28 14:06:02 +08:00
|
|
|
Future<List<PopupMenuItem<String>>> _getPopupMenuItems();
|
2022-07-27 22:56:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
class RecentPeerCard extends BasePeerCard {
|
2022-07-29 12:03:24 +08:00
|
|
|
RecentPeerCard({required Peer peer, Key? key})
|
|
|
|
: super(peer: peer, key: key, type: PeerType.recent);
|
2022-07-27 22:56:28 +08:00
|
|
|
|
2022-07-28 14:06:02 +08:00
|
|
|
Future<List<PopupMenuItem<String>>> _getPopupMenuItems() async {
|
2022-07-27 22:56:28 +08:00
|
|
|
return [
|
|
|
|
PopupMenuItem<String>(
|
|
|
|
child: Text(translate('Connect')), value: 'connect'),
|
|
|
|
PopupMenuItem<String>(
|
|
|
|
child: Text(translate('Transfer File')), value: 'file'),
|
|
|
|
PopupMenuItem<String>(
|
|
|
|
child: Text(translate('TCP Tunneling')), value: 'tcp-tunnel'),
|
|
|
|
PopupMenuItem<String>(child: Text(translate('Rename')), value: 'rename'),
|
|
|
|
PopupMenuItem<String>(child: Text(translate('Remove')), value: 'remove'),
|
|
|
|
PopupMenuItem<String>(
|
|
|
|
child: Text(translate('Unremember Password')),
|
|
|
|
value: 'unremember-password'),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class FavoritePeerCard extends BasePeerCard {
|
|
|
|
FavoritePeerCard({required Peer peer, Key? key})
|
2022-07-29 12:03:24 +08:00
|
|
|
: super(peer: peer, key: key, type: PeerType.fav);
|
2022-07-27 22:56:28 +08:00
|
|
|
|
2022-07-28 14:06:02 +08:00
|
|
|
Future<List<PopupMenuItem<String>>> _getPopupMenuItems() async {
|
2022-07-27 22:56:28 +08:00
|
|
|
return [
|
|
|
|
PopupMenuItem<String>(
|
|
|
|
child: Text(translate('Connect')), value: 'connect'),
|
|
|
|
PopupMenuItem<String>(
|
|
|
|
child: Text(translate('Transfer File')), value: 'file'),
|
|
|
|
PopupMenuItem<String>(
|
|
|
|
child: Text(translate('TCP Tunneling')), value: 'tcp-tunnel'),
|
|
|
|
PopupMenuItem<String>(child: Text(translate('Rename')), value: 'rename'),
|
|
|
|
PopupMenuItem<String>(child: Text(translate('Remove')), value: 'remove'),
|
|
|
|
PopupMenuItem<String>(
|
|
|
|
child: Text(translate('Unremember Password')),
|
|
|
|
value: 'unremember-password'),
|
|
|
|
PopupMenuItem<String>(
|
|
|
|
child: Text(translate('Remove from Favorites')), value: 'remove-fav'),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class DiscoveredPeerCard extends BasePeerCard {
|
|
|
|
DiscoveredPeerCard({required Peer peer, Key? key})
|
2022-07-29 12:03:24 +08:00
|
|
|
: super(peer: peer, key: key, type: PeerType.discovered);
|
2022-07-27 22:56:28 +08:00
|
|
|
|
2022-07-28 14:06:02 +08:00
|
|
|
Future<List<PopupMenuItem<String>>> _getPopupMenuItems() async {
|
2022-07-27 22:56:28 +08:00
|
|
|
return [
|
|
|
|
PopupMenuItem<String>(
|
|
|
|
child: Text(translate('Connect')), value: 'connect'),
|
|
|
|
PopupMenuItem<String>(
|
|
|
|
child: Text(translate('Transfer File')), value: 'file'),
|
|
|
|
PopupMenuItem<String>(
|
|
|
|
child: Text(translate('TCP Tunneling')), value: 'tcp-tunnel'),
|
|
|
|
PopupMenuItem<String>(child: Text(translate('Rename')), value: 'rename'),
|
|
|
|
PopupMenuItem<String>(child: Text(translate('Remove')), value: 'remove'),
|
|
|
|
PopupMenuItem<String>(
|
|
|
|
child: Text(translate('Unremember Password')),
|
|
|
|
value: 'unremember-password'),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class AddressBookPeerCard extends BasePeerCard {
|
|
|
|
AddressBookPeerCard({required Peer peer, Key? key})
|
2022-07-29 12:03:24 +08:00
|
|
|
: super(peer: peer, key: key, type: PeerType.ab);
|
2022-07-27 22:56:28 +08:00
|
|
|
|
2022-07-28 14:06:02 +08:00
|
|
|
Future<List<PopupMenuItem<String>>> _getPopupMenuItems() async {
|
2022-07-27 22:56:28 +08:00
|
|
|
return [
|
|
|
|
PopupMenuItem<String>(
|
|
|
|
child: Text(translate('Connect')), value: 'connect'),
|
|
|
|
PopupMenuItem<String>(
|
|
|
|
child: Text(translate('Transfer File')), value: 'file'),
|
|
|
|
PopupMenuItem<String>(
|
|
|
|
child: Text(translate('TCP Tunneling')), value: 'tcp-tunnel'),
|
|
|
|
PopupMenuItem<String>(child: Text(translate('Rename')), value: 'rename'),
|
|
|
|
PopupMenuItem<String>(
|
|
|
|
child: Text(translate('Remove')), value: 'ab-delete'),
|
|
|
|
PopupMenuItem<String>(
|
|
|
|
child: Text(translate('Unremember Password')),
|
|
|
|
value: 'unremember-password'),
|
|
|
|
PopupMenuItem<String>(
|
|
|
|
child: Text(translate('Add to Favorites')), value: 'add-fav'),
|
2022-07-29 12:03:24 +08:00
|
|
|
PopupMenuItem<String>(
|
|
|
|
child: Text(translate('Edit Tag')), value: 'ab-edit-tag'),
|
2022-07-27 22:56:28 +08:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|