hide/show tags panel button

This commit is contained in:
rustdesk
2023-06-29 15:18:35 +08:00
parent 137c5a00b6
commit 9f7706ca3e
2 changed files with 30 additions and 2 deletions

View File

@@ -10,6 +10,8 @@ import 'package:get/get.dart';
import '../../common.dart';
import 'login.dart';
final hideAbTagsPanel = false.obs;
class AddressBook extends StatefulWidget {
final EdgeInsets? menuPadding;
const AddressBook({Key? key, this.menuPadding}) : super(key: key);
@@ -67,7 +69,9 @@ class _AddressBookState extends State<AddressBook> {
Widget _buildAddressBookDesktop() {
return Row(
children: [
Container(
Offstage(
offstage: hideAbTagsPanel.value,
child: Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(12),
border:
@@ -89,7 +93,7 @@ class _AddressBookState extends State<AddressBook> {
],
),
),
).marginOnly(right: 12.0),
).marginOnly(right: 12.0)),
_buildPeersViews()
],
);