diff options
| author | xengineering <me@xengineering.eu> | 2026-03-10 17:56:51 +0100 |
|---|---|---|
| committer | xengineering <me@xengineering.eu> | 2026-03-10 17:56:51 +0100 |
| commit | 1809a88c679fcd17f29c13ddd47732bb65db96b2 (patch) | |
| tree | 70bf3b6fa5b5709c583756e2bca8e3844e47bf67 /lib/main.dart | |
| parent | ec394bd20b3c9325130596d63c5268587b159027 (diff) | |
| parent | 0f32a2c2aab78b882fff10a6b81ddd271bcb17b0 (diff) | |
| download | sia-app-1809a88c679fcd17f29c13ddd47732bb65db96b2.tar sia-app-1809a88c679fcd17f29c13ddd47732bb65db96b2.tar.zst sia-app-1809a88c679fcd17f29c13ddd47732bb65db96b2.zip | |
This allows the user to select the MQTT broker and thus Sia server
instance which should be used.
Diffstat (limited to 'lib/main.dart')
| -rw-r--r-- | lib/main.dart | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/main.dart b/lib/main.dart index 1601965..b636f29 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -1,14 +1,7 @@ import 'package:flutter/material.dart'; -import 'package:provider/provider.dart'; import 'ui.dart'; -import 'data.dart'; void main() { - runApp( - ChangeNotifierProvider<AppState>( - create: (BuildContext context) => AppState(), - child: const UI(), - ), - ); + runApp(const Sia()); } |
