add selinux tip

Signed-off-by: fufesou <shuanglongchen@yeah.net>
This commit is contained in:
fufesou
2023-10-21 23:24:54 +08:00
parent 2408758360
commit f531cd23ee
43 changed files with 216 additions and 62 deletions

View File

@@ -37,7 +37,6 @@ class _ConnectionPageState extends State<ConnectionPage>
Timer? _updateTimer;
final RxBool _idInputFocused = false.obs;
final FocusNode _idFocusNode = FocusNode();
var svcStopped = Get.find<RxBool>(tag: 'stop-service');
var svcIsUsingPublicServer = true.obs;
@@ -334,8 +333,10 @@ class _ConnectionPageState extends State<ConnectionPage>
optionsViewBuilder: (BuildContext context, AutocompleteOnSelected<Peer> onSelected, Iterable<Peer> options) {
double maxHeight = 0;
for (var peer in options) {
if (maxHeight < 200)
maxHeight += 50; };
if (maxHeight < 200) {
maxHeight += 50;
}
}
return Align(
alignment: Alignment.topLeft,
child: ClipRRect(