mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-25 10:58:50 +01:00
Format code
This commit is contained in:
parent
c4c750a778
commit
658e808fcd
2 changed files with 3 additions and 7 deletions
|
@ -251,9 +251,7 @@ class _AlbumBrowserState extends State<AlbumBrowser>
|
|||
IconButton(
|
||||
icon: const Icon(Icons.remove),
|
||||
tooltip: L10n.of(context).removeSelectedFromAlbumTooltip,
|
||||
onPressed: () {
|
||||
_onSelectionAppBarRemovePressed();
|
||||
},
|
||||
onPressed: _onSelectionAppBarRemovePressed,
|
||||
)
|
||||
]);
|
||||
}
|
||||
|
|
|
@ -30,8 +30,7 @@ class PendingAlbumsArguments {
|
|||
class PendingAlbums extends StatefulWidget {
|
||||
static const routeName = "/pending-albums";
|
||||
|
||||
static Route buildRoute(PendingAlbumsArguments args) =>
|
||||
MaterialPageRoute(
|
||||
static Route buildRoute(PendingAlbumsArguments args) => MaterialPageRoute(
|
||||
builder: (context) => PendingAlbums.fromArgs(args),
|
||||
);
|
||||
|
||||
|
@ -198,8 +197,7 @@ class _PendingAlbumsState extends State<PendingAlbums> {
|
|||
|
||||
var _items = <_GridItem>[];
|
||||
|
||||
static final _log =
|
||||
Logger("widget.pending_albums._PendingAlbumsState");
|
||||
static final _log = Logger("widget.pending_albums._PendingAlbumsState");
|
||||
}
|
||||
|
||||
class _GridItem {
|
||||
|
|
Loading…
Reference in a new issue