mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

Updates the tooling to use the GTK embedding, rather than the GLFW embedding: - Adds new requirements to `doctor` - Updates the app and plugin templates to make GTK-based runners and plugins - Stops downloading and installing the GLFW artifacts Final part of #54860, other than cleanup.
16 lines
569 B
C
16 lines
569 B
C
#ifndef WINDOW_CONFIGURATION_
|
|
#define WINDOW_CONFIGURATION_
|
|
|
|
// This is a temporary approach to isolate common customizations from main.cc,
|
|
// where the APIs are still in flux. This should simplify re-creating the
|
|
// runner while preserving local changes.
|
|
//
|
|
// Longer term there should be simpler configuration options for common
|
|
// customizations like this, without requiring native code changes.
|
|
|
|
extern const char *kFlutterWindowTitle;
|
|
extern const unsigned int kFlutterWindowWidth;
|
|
extern const unsigned int kFlutterWindowHeight;
|
|
|
|
#endif // WINDOW_CONFIGURATION_
|