forked from Nexus/nexus
treewide(refactor): rename files to follow the same style
This commit is contained in:
parent
15d441e4c4
commit
7992f0e815
81 changed files with 167 additions and 167 deletions
|
|
@ -1,19 +0,0 @@
|
|||
import "package:flutter_riverpod/flutter_riverpod.dart";
|
||||
import "package:nexus/main.dart";
|
||||
import "package:nexus/models/sync_status.dart";
|
||||
|
||||
class SyncStatusController extends Notifier<SyncStatus?> {
|
||||
@override
|
||||
Null build() => null;
|
||||
|
||||
void set(SyncStatus newStatus) {
|
||||
if (newStatus.type == .permanentlyFailed) {
|
||||
showError(newStatus.error ?? "Syncing failed");
|
||||
}
|
||||
state = newStatus;
|
||||
}
|
||||
|
||||
static final provider = NotifierProvider<SyncStatusController, SyncStatus?>(
|
||||
SyncStatusController.new,
|
||||
);
|
||||
}
|
||||
Loading…
Reference in a new issue