fix: add return for loading indicator in post screen

This commit is contained in:
Freek van de Ven 2024-06-17 22:00:23 +02:00
parent d77136edd4
commit d089cec5a4
2 changed files with 2 additions and 1 deletions

View file

@ -1,6 +1,7 @@
## 4.1.0
- Migrate to flutter 3.22 which deprecates the background and onBackground properties in the ThemeData and also removes MaterialStatePropertyAll
- Add categorySelectionButtonSelectedTextColor and categorySelectionButtonUnselectedTextColor to the timeline theme to allow for the customization of the text color of the category selection buttons
- Show loading indicator when loading a post in the post screen
## 4.0.0

View file

@ -112,7 +112,7 @@ class _TimelinePostScreenState extends State<TimelinePostScreen> {
var timeFormat = widget.options.timeFormat ?? DateFormat('HH:mm');
if (isLoading) {
const Center(
return const Center(
child: CircularProgressIndicator.adaptive(),
);
}