Masterarbeit Richard Stern. Flutter App, sich mit einem Bluetooth-Gerät verbindet und Berührungen auf einem Sensor visualisiert.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

appBloc.dart 723B

12345678910111213141516171819202122232425262728
  1. import 'package:touch_demonstrator/src/blocs/bluetoothBloc.dart';
  2. import 'package:touch_demonstrator/src/blocs/debugCounterBloc.dart';
  3. //import 'package:touch_demonstrator/src/blocs/touchDataBloc.dart';
  4. class AppBloc {
  5. DebugBloc _debugBloc;
  6. // EvenCounterBloc _evenCounter;
  7. BluetoothBloc _bluetoothBloc;
  8. // TouchDataBloc _touchDataInputBloc;
  9. AppBloc()
  10. : _debugBloc = DebugBloc(),
  11. _bluetoothBloc = BluetoothBloc();
  12. // _touchDataInputBloc = TouchDataBloc();
  13. DebugBloc get debugBlocGetter => _debugBloc;
  14. // EvenCounterBloc get evenCounterBloc => _evenCounter;
  15. BluetoothBloc get bluetoothBlocGetter => _bluetoothBloc;
  16. // TouchDataBloc get touchInBlocGetter => _touchDataInputBloc;
  17. }