fix tags hidden in mobile

This commit is contained in:
rustdesk 2023-07-26 19:57:42 +08:00
parent 8b8f50ed0f
commit 4fe85cdd4a

View File

@ -103,11 +103,13 @@ class _AddressBookState extends State<AddressBook> {
Widget _buildAddressBookMobile() {
return Column(
children: [
Container(
Offstage(
offstage: hideAbTagsPanel.value,
child: Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(6),
border:
Border.all(color: Theme.of(context).colorScheme.background)),
border: Border.all(
color: Theme.of(context).colorScheme.background)),
child: Container(
padding: const EdgeInsets.all(8.0),
child: Column(
@ -121,7 +123,7 @@ class _AddressBookState extends State<AddressBook> {
],
),
),
).marginOnly(bottom: 12.0),
).marginOnly(bottom: 12.0)),
_buildPeersViews()
],
);