Add proxy routing and sing-box support

This commit is contained in:
Fabian Freund
2026-05-22 18:16:31 +02:00
parent 51289f1266
commit a5974617aa
262 changed files with 32003 additions and 3962 deletions
@@ -125,7 +125,9 @@ class _MethodTile extends ConsumerWidget {
failed: failed,
colorScheme: colorScheme,
),
onTap: busy ? null : () => _handleTap(context, ref, ready, failed, captured),
onTap: busy
? null
: () => _handleTap(context, ref, ready, failed, captured),
);
}
@@ -200,9 +202,6 @@ class _StatusIndicator extends StatelessWidget {
if (failed) {
return Icon(Icons.refresh, color: colorScheme.error);
}
return Icon(
Icons.download_rounded,
color: colorScheme.onSurfaceVariant,
);
return Icon(Icons.download_rounded, color: colorScheme.onSurfaceVariant);
}
}