add qr button to channel_list_extended

This commit is contained in:
2025-04-17 22:19:04 +02:00
parent ab4b40ab75
commit a43a3b441f
4 changed files with 44 additions and 13 deletions

View File

@@ -10,9 +10,11 @@ class SCNScaffold extends StatelessWidget {
this.showSearch = true,
this.showShare = false,
this.onShare = null,
this.floatingActionButton = null,
}) : super(key: key);
final Widget child;
final Widget? floatingActionButton;
final String? title;
final bool showThemeSwitch;
final bool showSearch;
@@ -30,6 +32,7 @@ class SCNScaffold extends StatelessWidget {
onShare: onShare ?? () {},
),
body: child,
floatingActionButton: floatingActionButton,
);
}
}