mirror of
https://github.com/zarzet/SpotiFLAC-Mobile.git
synced 2026-07-28 23:08:59 +02:00
13 lines
396 B
Dart
13 lines
396 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:spotiflac_android/l10n/l10n.dart';
|
|
import 'package:spotiflac_android/services/shell_navigation_service.dart';
|
|
|
|
SnackBarAction buildViewQueueSnackBarAction(BuildContext context) {
|
|
return SnackBarAction(
|
|
label: context.l10n.snackbarViewQueue,
|
|
onPressed: () {
|
|
ShellNavigationService.requestTab(ShellTab.library);
|
|
},
|
|
);
|
|
}
|