minimal_mvn
使用 Model-View-Notifier (MVN) 模式為 Flutter 應用程式提供的極簡狀態管理解決方案
一個最小的狀態管理套件
{"sdk":"flutter"}{"sdk":"flutter"}以下為英文專案原文快照,最新內容請造訪 GitHub。
Minimal Logo
A minimal state management package for Flutter. Part of a minimalistic architecture based on the MVN (Model-View-Notifier) pattern.
This package aims for the simplest possible architecture, making it easier to understand and use, while offering an alternative to the growing complexity found in many other state management solutions, in an attempt to minimize side effects.
Check out the live example at https://alesalv.github.io/minimal/
Counter
The classical Flutter counter app demonstrates basic state management. The counter on the top is a non disposable notifier, so it keeps memory when re-entering the page. The one on the bottom is a disposable notifier, so it resets when re-entering the page.
Chroma Counter
A more advanced counter widget, which increases the counter, and randomly changes color and shape. The reveal button shows a second widget using the same notifier. Thanks to the autodispose feature, the notifier is disposed only when both the widgets are not visible anymore. The string on top of the choma counter updates every 10 counts, thanks to the select feature, which is used to avoid unnecessary rebuilds.
The complete source code is in the example folder.
Add Minimal to your pubspec.yaml:
dart pub add minimal_mvn
# or
flutter pub add minimal_mvn
and import the package:
import 'package:minimal_mvn/minimal_mvn.dart';
You can now start using Minimal's MVN pattern in your application. The quickest way is to follow the 4 steps below.
@MappableClass()
class ChromaCounterUIState with ChromaCounterUIStateMappable {
const ChromaCounterUIState({
this.backgroundColor = Colors.blue,
this.count = 0,
});
final Color backgroundColor;
final int count;
}
class ChromaCounterNotifier extends MMNotifier<ChromaCounterUIState> {
ChromaCounterNotifier() : super(const ChromaCounterUIState());
void nextMetamorph() => notify(
state.copyWith(
backgroundColor: _randomColor(),
count: state.count + 1,
),
);
}
final MMManager<ChromaCounterNotifier> chromaCounterManager =
MMManager(ChromaCounterNotifier.new, autodispose: true);
FloatingActionButton(
onPressed: () => chromaCounterManager.notifier.nextMetamorph(),
);
final notifier = chromaCounterManager.notifier;
return ListenableBuilder(
listenable: notifier,
builder: (context, _) => Container(
color: notifier.state.backgroundColor,
child: const Text('Count: ${notifier.state.count}'),
),
);
final notifier = chromaCounterManager.notifier;
return ListenableBuilder(
listenable: notifier.select((state) => state.backgroundColor),
builder: (context, _) => Container(
color: notifier.state.backgroundColor,
),
);
In tests, you can override the notifier with a mock notifier through the minimal manager:
testWidgets('should update UI when state changes', (tester) async {
// Use the minimal manager to override the notifier
chromaCounterManager.override(MockCounterNotifier.new);
await tester.pumpWidget(const MaterialApp(home: ChromaCounter()));
// Change state through the mock notifier
chromaCounterManager.notifier.nextMetamorph();
await tester.pump();
final newColor = _getContainerColor(tester);
// Test the exact color instead of a random one
expect(newColor, equals(Colors.red));
});
See the example app tests for more testing examples.