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.

FlutterAppDelegate.h 1.1KB

12345678910111213141516171819202122232425262728293031323334
  1. // Copyright 2013 The Flutter Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef FLUTTER_FLUTTERAPPDELEGATE_H_
  5. #define FLUTTER_FLUTTERAPPDELEGATE_H_
  6. #import <UIKit/UIKit.h>
  7. #include "FlutterMacros.h"
  8. #include "FlutterPlugin.h"
  9. /**
  10. * `UIApplicationDelegate` subclass for simple apps that want default behavior.
  11. *
  12. * This class implements the following behaviors:
  13. * * Status bar touches are forwarded to the key window's root view
  14. * `FlutterViewController`, in order to trigger scroll to top.
  15. * * Keeps the Flutter connection open in debug mode when the phone screen
  16. * locks.
  17. *
  18. * App delegates for Flutter applications are *not* required to inherit from
  19. * this class. Developers of custom app delegate classes should copy and paste
  20. * code as necessary from FlutterAppDelegate.mm.
  21. */
  22. FLUTTER_EXPORT
  23. @interface FlutterAppDelegate
  24. : UIResponder <UIApplicationDelegate, FlutterPluginRegistry, FlutterAppLifeCycleProvider>
  25. @property(strong, nonatomic) UIWindow* window;
  26. @end
  27. #endif // FLUTTER_FLUTTERDARTPROJECT_H_