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.

app.dart 324B

1234567891011
  1. import 'package:flutter_driver/driver_extension.dart';
  2. import 'package:touch_demonstrator/main.dart' as app;
  3. void main() {
  4. // This line enables the extension
  5. enableFlutterDriverExtension();
  6. // Call the `main()` function of your app or call `runApp` with any widget you
  7. // are interested in testing.
  8. app.main();
  9. }