Rename ArcaneReactiveTheme to ArcaneTheme

This commit is contained in:
2025-07-02 14:19:07 +02:00
parent c82c1822cc
commit 286d18e261
8 changed files with 44 additions and 54 deletions
@@ -3,11 +3,11 @@ import "package:flutter/material.dart";
import "package:flutter_test/flutter_test.dart";
void main() {
group("ArcaneReactiveTheme", () {
late ArcaneReactiveTheme theme;
group("ArcaneTheme", () {
late ArcaneTheme theme;
setUp(() {
theme = ArcaneReactiveTheme.I;
theme = ArcaneTheme.I;
theme.reset();
});
@@ -16,7 +16,7 @@ void main() {
});
test("singleton instance is consistent", () {
expect(identical(ArcaneReactiveTheme.I, theme), true);
expect(identical(ArcaneTheme.I, theme), true);
});
group("theme mode", () {