mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 17:47:28 +00:00
8 lines
146 B
Dart
8 lines
146 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'scene_state.dart';
|
|
|
|
class SceneProvider extends ChangeNotifier {
|
|
final state = SceneState();
|
|
}
|