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.

Flutter.h 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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_FLUTTER_H_
  5. #define FLUTTER_FLUTTER_H_
  6. /**
  7. BREAKING CHANGES:
  8. December 17, 2018:
  9. - Changed designated initializer on FlutterEngine
  10. October 5, 2018:
  11. - Removed FlutterNavigationController.h/.mm
  12. - Changed return signature of `FlutterDartHeadlessCodeRunner.run*` from void
  13. to bool
  14. - Removed HeadlessPlatformViewIOS
  15. - Marked FlutterDartHeadlessCodeRunner deprecated
  16. August 31, 2018: Marked -[FlutterDartProject
  17. initFromDefaultSourceForConfiguration] and FlutterStandardBigInteger as
  18. unavailable.
  19. July 26, 2018: Marked -[FlutterDartProject
  20. initFromDefaultSourceForConfiguration] deprecated.
  21. February 28, 2018: Removed "initWithFLXArchive" and
  22. "initWithFLXArchiveWithScriptSnapshot".
  23. January 15, 2018: Marked "initWithFLXArchive" and
  24. "initWithFLXArchiveWithScriptSnapshot" as unavailable following the
  25. deprecation from December 11, 2017. Scheduled to be removed on February
  26. 19, 2018.
  27. January 09, 2018: Deprecated "FlutterStandardBigInteger" and its use in
  28. "FlutterStandardMessageCodec" and "FlutterStandardMethodCodec". Scheduled to
  29. be marked as unavailable once the deprecation has been available on the
  30. flutter/flutter alpha branch for four weeks. "FlutterStandardBigInteger" was
  31. needed because the Dart 1.0 int type had no size limit. With Dart 2.0, the
  32. int type is a fixed-size, 64-bit signed integer. If you need to communicate
  33. larger integers, use NSString encoding instead.
  34. December 11, 2017: Deprecated "initWithFLXArchive" and
  35. "initWithFLXArchiveWithScriptSnapshot" and scheculed the same to be marked as
  36. unavailable on January 15, 2018. Instead, "initWithFlutterAssets" and
  37. "initWithFlutterAssetsWithScriptSnapshot" should be used. The reason for this
  38. change is that the FLX archive will be deprecated and replaced with a flutter
  39. assets directory containing the same files as the FLX did.
  40. November 29, 2017: Added a BREAKING CHANGES section.
  41. */
  42. #include "FlutterAppDelegate.h"
  43. #include "FlutterBinaryMessenger.h"
  44. #include "FlutterCallbackCache.h"
  45. #include "FlutterChannels.h"
  46. #include "FlutterCodecs.h"
  47. #include "FlutterDartProject.h"
  48. #include "FlutterEngine.h"
  49. #include "FlutterHeadlessDartRunner.h"
  50. #include "FlutterMacros.h"
  51. #include "FlutterPlatformViews.h"
  52. #include "FlutterPlugin.h"
  53. #include "FlutterPluginAppLifeCycleDelegate.h"
  54. #include "FlutterTexture.h"
  55. #include "FlutterViewController.h"
  56. #endif // FLUTTER_FLUTTER_H_