Apply dart fixes
This commit is contained in:
parent
b2ab4f60bc
commit
685fc408ea
3 changed files with 3 additions and 3 deletions
|
@ -363,7 +363,7 @@ class AlbumVerticalListWidget extends StatelessWidget {
|
|||
int collectionID,
|
||||
bool showProgressDialog,
|
||||
) async {
|
||||
bool result = await _collectionActions.addToCollection(
|
||||
final bool result = await _collectionActions.addToCollection(
|
||||
context,
|
||||
collectionID,
|
||||
showProgressDialog,
|
||||
|
|
|
@ -80,7 +80,7 @@ class HiddenCollectionsButtonWidget extends StatelessWidget {
|
|||
if (hasAuthenticated) {
|
||||
routeToPage(
|
||||
context,
|
||||
HiddenPage(),
|
||||
const HiddenPage(),
|
||||
);
|
||||
}
|
||||
},
|
||||
|
|
|
@ -108,7 +108,7 @@ class FileAppBarState extends State<FileAppBar> {
|
|||
actions.add(
|
||||
Text(
|
||||
widget.file.generatedID?.toString() ?? 'null',
|
||||
style: TextStyle(color: Colors.white),
|
||||
style: const TextStyle(color: Colors.white),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue