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