window_configuration.h 570 B

123456789101112131415
  1. #ifndef WINDOW_CONFIGURATION_
  2. #define WINDOW_CONFIGURATION_
  3. // This is a temporary approach to isolate common customizations from main.cpp,
  4. // where the APIs are still in flux. This should simplify re-creating the
  5. // runner while preserving local changes.
  6. //
  7. // Longer term there should be simpler configuration options for common
  8. // customizations like this, without requiring native code changes.
  9. extern const char *kFlutterWindowTitle;
  10. extern const unsigned int kFlutterWindowWidth;
  11. extern const unsigned int kFlutterWindowHeight;
  12. #endif // WINDOW_CONFIGURATION_