Include category detail when requesting part information

This commit is contained in:
Oliver Walters 2021-01-20 22:58:04 +11:00
parent b4710b56e3
commit 153bb1c077
3 changed files with 13 additions and 2 deletions

View file

@ -36,7 +36,7 @@ abstract class RefreshableState<T extends StatefulWidget> extends State<T> {
// Function to construct an appbar (override if needed)
AppBar getAppBar(BuildContext context) {
return AppBar(
title: Text(getAppBarTitle(context))
title: Text(getAppBarTitle(context)),
);
}