Update connection_page.dart

This commit is contained in:
qinsheng13141981-afk 2026-06-20 18:07:17 +07:00 committed by GitHub
commit 6f8f539183
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -83,29 +83,6 @@ class _OnlineStatusWidgetState extends State<OnlineStatusWidget> {
offstage: !(!_svcStopped.value &&
stateGlobal.svcStatus.value == SvcStatus.ready &&
_svcIsUsingPublicServer.value),
child: Row(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Text(', ', style: TextStyle(fontSize: em)),
Flexible(
child: InkWell(
onTap: onUsePublicServerGuide,
child: Row(
children: [
Flexible(
child: Text(
translate('setup_server_tip'),
style: TextStyle(
decoration: TextDecoration.underline,
fontSize: em),
),
),
],
),
),
)
],
),
),
);