Implement desktop client layout
This commit is contained in:
parent
f749bb8d83
commit
0a7461cdbe
|
|
@ -689,7 +689,8 @@ class EntityScreens extends StatelessWidget {
|
|||
children: [
|
||||
if (prefState.isViewerFullScreen(
|
||||
state.uiState.filterEntityType))
|
||||
Expanded(
|
||||
SizedBox(
|
||||
height: 350,
|
||||
child: topFilterChild,
|
||||
)
|
||||
else
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@ class _ClientViewFullwidthState extends State<ClientViewFullwidth>
|
|||
overflow: TextOverflow.ellipsis,
|
||||
)),
|
||||
),
|
||||
SizedBox(width: kTableColumnGap),
|
||||
SizedBox(width: 4),
|
||||
Flexible(
|
||||
child: OutlinedButton(
|
||||
onPressed: () {
|
||||
|
|
@ -260,7 +260,7 @@ class _ClientViewFullwidthState extends State<ClientViewFullwidth>
|
|||
'${contact.link}&client_hash=${client.clientHash}';
|
||||
Clipboard.setData(ClipboardData(text: url));
|
||||
showToast(localization.copiedToClipboard
|
||||
.replaceFirst(':value ', url));
|
||||
.replaceFirst(':value ', ''));
|
||||
},
|
||||
child: Text(
|
||||
localization.copyLink,
|
||||
|
|
|
|||
Loading…
Reference in New Issue