Remove obsolete mixin

This commit is contained in:
Ming Ming 2021-07-13 11:24:39 +08:00
parent 1e44f20bd1
commit 2f32c39407
4 changed files with 1 additions and 4 deletions

View file

@ -63,7 +63,6 @@ class AlbumViewer extends StatefulWidget {
class _AlbumViewerState extends State<AlbumViewer>
with
WidgetsBindingObserver,
SelectableItemStreamListMixin<AlbumViewer>,
DraggableItemListMixin<AlbumViewer>,
AlbumViewerMixin<AlbumViewer> {

View file

@ -50,7 +50,7 @@ class ArchiveViewer extends StatefulWidget {
}
class _ArchiveViewerState extends State<ArchiveViewer>
with WidgetsBindingObserver, SelectableItemStreamListMixin<ArchiveViewer> {
with SelectableItemStreamListMixin<ArchiveViewer> {
@override
initState() {
super.initState();

View file

@ -64,7 +64,6 @@ class DynamicAlbumViewer extends StatefulWidget {
class _DynamicAlbumViewerState extends State<DynamicAlbumViewer>
with
WidgetsBindingObserver,
SelectableItemStreamListMixin<DynamicAlbumViewer>,
AlbumViewerMixin<DynamicAlbumViewer> {
@override

View file

@ -53,7 +53,6 @@ class HomePhotos extends StatefulWidget {
class _HomePhotosState extends State<HomePhotos>
with
WidgetsBindingObserver,
SelectableItemStreamListMixin<HomePhotos>,
RouteAware,
PageVisibilityMixin {