mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-12-12 02:09:12 +08:00
Merge pull request #4566 from grummbeer/cleanup-dialog-extra-space
Cleanup dialogs
This commit is contained in:
commit
e8ea2f383f
@ -1136,9 +1136,6 @@ void _rdpDialog(String id) async {
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
const SizedBox(
|
||||
height: 8.0,
|
||||
),
|
||||
Row(
|
||||
children: [
|
||||
isDesktop
|
||||
@ -1207,7 +1204,7 @@ void _rdpDialog(String id) async {
|
||||
)),
|
||||
),
|
||||
],
|
||||
).marginOnly(bottom: isDesktop ? 8 : 0),
|
||||
)
|
||||
],
|
||||
),
|
||||
),
|
||||
|
@ -1976,9 +1976,6 @@ void changeSocks5Proxy() async {
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
const SizedBox(
|
||||
height: 8.0,
|
||||
),
|
||||
Row(
|
||||
children: [
|
||||
ConstrainedBox(
|
||||
@ -2033,9 +2030,10 @@ void changeSocks5Proxy() async {
|
||||
)),
|
||||
),
|
||||
],
|
||||
).marginOnly(bottom: 8),
|
||||
),
|
||||
Offstage(
|
||||
offstage: !isInProgress, child: const LinearProgressIndicator())
|
||||
offstage: !isInProgress,
|
||||
child: const LinearProgressIndicator().marginOnly(top: 8))
|
||||
],
|
||||
),
|
||||
),
|
||||
|
Loading…
Reference in New Issue
Block a user