remove comma when self-host server

This commit is contained in:
csf 2022-09-30 16:15:21 +08:00
parent 8e9f1bed64
commit ff9c3bccb5

View File

@ -288,17 +288,23 @@ class _ConnectionPageState extends State<ConnectionPage>
children: [ children: [
light, light,
Text(translate('Ready'), style: textStyle), Text(translate('Ready'), style: textStyle),
Text(', ', style: textStyle), Offstage(
svcIsUsingPublicServer.value offstage: !svcIsUsingPublicServer.value,
? InkWell( child: Row(
onTap: onUsePublicServerGuide, crossAxisAlignment: CrossAxisAlignment.center,
child: Text( children: [
translate('setup_server_tip'), Text(', ', style: textStyle),
style: TextStyle( InkWell(
decoration: TextDecoration.underline, fontSize: fontSize), onTap: onUsePublicServerGuide,
), child: Text(
) translate('setup_server_tip'),
: Offstage() style: TextStyle(
decoration: TextDecoration.underline,
fontSize: fontSize),
),
)
],
))
], ],
); );
} }