Changed system navigation bar color

This commit is contained in:
Juan Gilsanz Polo 2023-12-09 04:04:14 +01:00
parent 83ea589187
commit b164d520db
47 changed files with 3370 additions and 3207 deletions

View file

@ -122,14 +122,16 @@ class _TopItemsScreenState extends State<TopItemsScreen> {
const SizedBox(width: 8)
],
),
body: _Content(
buildValue: widget.buildValue,
isClient: widget.isClient,
onTapEntry: widget.onTapEntry,
options: widget.options,
screenData: screenData,
total: total,
withProgressBar: widget.withProgressBar,
body: SafeArea(
child: _Content(
buildValue: widget.buildValue,
isClient: widget.isClient,
onTapEntry: widget.onTapEntry,
options: widget.options,
screenData: screenData,
total: total,
withProgressBar: widget.withProgressBar,
),
),
),
);