Apply dart fixes

This commit is contained in:
vishnukvmd 2023-09-22 12:19:50 +05:30
parent b2ab4f60bc
commit 685fc408ea
3 changed files with 3 additions and 3 deletions

View file

@ -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,

View file

@ -80,7 +80,7 @@ class HiddenCollectionsButtonWidget extends StatelessWidget {
if (hasAuthenticated) {
routeToPage(
context,
HiddenPage(),
const HiddenPage(),
);
}
},

View file

@ -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),
),
);
}