Add macOS support (#23)

* Add macOS support

* Update README

* Update to v0.2.0

* Document breaking changes

* Delete widget tests
This commit is contained in:
Ben Hagen
2025-05-13 16:24:58 +02:00
committed by GitHub
parent c391cc5f26
commit abe519dae7
103 changed files with 3444 additions and 169 deletions
+2 -2
View File
@@ -23,7 +23,7 @@ enum AppState {
AppState.connected,
AppState.communicationChannelCreated,
];
static final List<AppState> iosSteps = [
static final List<AppState> darwinSteps = [
AppState.idle,
AppState.selectClientType,
AppState.readyToDiscover,
@@ -36,7 +36,7 @@ enum AppState {
static final List<AppState> steps = [
if (Platform.isAndroid) ...androidSteps,
if (Platform.isIOS) ...iosSteps,
if (Platform.isIOS || Platform.isMacOS) ...darwinSteps,
];
int get step {