add side panel and more build log controls

This commit is contained in:
2024-02-16 17:37:26 +01:00
committed by Lukas-Heiligenbrunner
parent 96c2876c97
commit 7ea241112c
5 changed files with 226 additions and 68 deletions

View File

@ -42,8 +42,7 @@ class _APIBuilderState<T extends BaseProvider, K, DTO>
if (widget.interval != null) {
timer = Timer.periodic(widget.interval!, (Timer t) {
Provider.of<T>(context, listen: false)
.refresh(context);
Provider.of<T>(context, listen: false).refresh(context);
});
}
}