Onstart sync progressbar: changed default screen to channels

Because it's synchronization is faster and first in line
This commit is contained in:
HDDen
2026-05-24 15:33:54 +03:00
parent ed0e6b6554
commit 4dd472e3c3
3 changed files with 16 additions and 16 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ import '../utils/app_logger.dart';
import '../widgets/adaptive_app_bar_title.dart';
import '../widgets/device_tile.dart';
import '../helpers/snack_bar_builder.dart';
import 'contacts_screen.dart';
import 'channels_screen.dart';
import 'tcp_screen.dart';
import 'usb_screen.dart';
@@ -46,7 +46,7 @@ class _ScannerScreenState extends State<ScannerScreen> {
_changedNavigation = true;
if (mounted) {
Navigator.of(context).push(
MaterialPageRoute(builder: (context) => const ContactsScreen()),
MaterialPageRoute(builder: (context) => const ChannelsScreen()),
);
}
}