fix mobile home page style

This commit is contained in:
rustdesk 2023-06-21 23:29:12 +08:00
parent 3e27f82765
commit 23389ef140
3 changed files with 1 additions and 3 deletions

View File

@ -125,7 +125,6 @@ class _AddressBookState extends State<AddressBook> {
), ),
), ),
), ),
Divider(),
_buildPeersViews() _buildPeersViews()
], ],
); );

View File

@ -98,7 +98,6 @@ class _PeerTabPageState extends State<PeerTabPage>
height: 28, height: 28,
child: Container( child: Container(
padding: isDesktop ? null : EdgeInsets.symmetric(horizontal: 2), padding: isDesktop ? null : EdgeInsets.symmetric(horizontal: 2),
constraints: isDesktop ? null : kMobilePageConstraints,
child: Row( child: Row(
crossAxisAlignment: CrossAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.center,
children: [ children: [

View File

@ -173,7 +173,7 @@ class _ConnectionPageState extends State<ConnectionPage> {
), ),
); );
return Align( return Align(
alignment: Alignment.topLeft, alignment: Alignment.topCenter,
child: Container(constraints: kMobilePageConstraints, child: w)); child: Container(constraints: kMobilePageConstraints, child: w));
} }