fix tags hidden in mobile
This commit is contained in:
parent
8b8f50ed0f
commit
4fe85cdd4a
@ -103,25 +103,27 @@ class _AddressBookState extends State<AddressBook> {
|
|||||||
Widget _buildAddressBookMobile() {
|
Widget _buildAddressBookMobile() {
|
||||||
return Column(
|
return Column(
|
||||||
children: [
|
children: [
|
||||||
Container(
|
Offstage(
|
||||||
decoration: BoxDecoration(
|
offstage: hideAbTagsPanel.value,
|
||||||
borderRadius: BorderRadius.circular(6),
|
child: Container(
|
||||||
border:
|
decoration: BoxDecoration(
|
||||||
Border.all(color: Theme.of(context).colorScheme.background)),
|
borderRadius: BorderRadius.circular(6),
|
||||||
child: Container(
|
border: Border.all(
|
||||||
padding: const EdgeInsets.all(8.0),
|
color: Theme.of(context).colorScheme.background)),
|
||||||
child: Column(
|
child: Container(
|
||||||
mainAxisSize: MainAxisSize.min,
|
padding: const EdgeInsets.all(8.0),
|
||||||
children: [
|
child: Column(
|
||||||
_buildTagHeader().marginOnly(left: 8.0, right: 0),
|
mainAxisSize: MainAxisSize.min,
|
||||||
Container(
|
children: [
|
||||||
width: double.infinity,
|
_buildTagHeader().marginOnly(left: 8.0, right: 0),
|
||||||
child: _buildTags(),
|
Container(
|
||||||
|
width: double.infinity,
|
||||||
|
child: _buildTags(),
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
],
|
),
|
||||||
),
|
).marginOnly(bottom: 12.0)),
|
||||||
),
|
|
||||||
).marginOnly(bottom: 12.0),
|
|
||||||
_buildPeersViews()
|
_buildPeersViews()
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user