perf: defer initial data fetching to microtasks and update loading placeholders for smoother screen transitions

This commit is contained in:
pradeepkumar
2026-04-18 16:35:32 +05:30
parent 4a842e9098
commit dea688194f
4 changed files with 34 additions and 8 deletions

View File

@@ -122,7 +122,7 @@ class FaqState {
class FaqNotifier extends StateNotifier<FaqState> {
FaqNotifier() : super(const FaqState()) {
_load();
Future.microtask(_load);
}
Future<void> _load() async {