fix(windows): Recreate windows files to make sure windows compiles
parent
9806428c62
commit
bac6dceaaf
@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
|
||||||
|
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
||||||
|
<!-- Show a splash screen on the activity. Automatically removed when
|
||||||
|
Flutter draws its first frame -->
|
||||||
|
<item name="android:windowBackground">@drawable/launch_background</item>
|
||||||
|
</style>
|
||||||
|
<!-- Theme applied to the Android Window as soon as the process has started.
|
||||||
|
This theme determines the color of the Android Window while your
|
||||||
|
Flutter UI initializes, as well as behind your Flutter UI while its
|
||||||
|
running.
|
||||||
|
|
||||||
|
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
||||||
|
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
||||||
|
<item name="android:windowBackground">?android:colorBackground</item>
|
||||||
|
</style>
|
||||||
|
</resources>
|
@ -1 +0,0 @@
|
|||||||
5
|
|
Binary file not shown.
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 12 KiB |
@ -1,8 +1,8 @@
|
|||||||
#ifndef CONSOLE_UTILS_H_
|
#ifndef RUNNER_UTILS_H_
|
||||||
#define CONSOLE_UTILS_H_
|
#define RUNNER_UTILS_H_
|
||||||
|
|
||||||
// Creates a console for the process, and redirects stdout and stderr to
|
// Creates a console for the process, and redirects stdout and stderr to
|
||||||
// it for both the runner and the Flutter library.
|
// it for both the runner and the Flutter library.
|
||||||
void CreateAndAttachConsole();
|
void CreateAndAttachConsole();
|
||||||
|
|
||||||
#endif // CONSOLE_UTILS_H_
|
#endif // RUNNER_UTILS_H_
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
#include "window_configuration.h"
|
|
||||||
|
|
||||||
const wchar_t* kFlutterWindowTitle = L"fluffychat";
|
|
||||||
const unsigned int kFlutterWindowOriginX = 10;
|
|
||||||
const unsigned int kFlutterWindowOriginY = 10;
|
|
||||||
const unsigned int kFlutterWindowWidth = 1280;
|
|
||||||
const unsigned int kFlutterWindowHeight = 720;
|
|
@ -1,18 +0,0 @@
|
|||||||
#ifndef WINDOW_CONFIGURATION_
|
|
||||||
#define WINDOW_CONFIGURATION_
|
|
||||||
|
|
||||||
// This is a temporary approach to isolate changes that people are likely to
|
|
||||||
// make to main.cpp, where the APIs are still in flux. This will reduce the
|
|
||||||
// need to resolve conflicts or re-create changes slightly differently every
|
|
||||||
// time the Windows Flutter API surface changes.
|
|
||||||
//
|
|
||||||
// Longer term there should be simpler configuration options for common
|
|
||||||
// customizations like this, without requiring native code changes.
|
|
||||||
|
|
||||||
extern const wchar_t* kFlutterWindowTitle;
|
|
||||||
extern const unsigned int kFlutterWindowOriginX;
|
|
||||||
extern const unsigned int kFlutterWindowOriginY;
|
|
||||||
extern const unsigned int kFlutterWindowWidth;
|
|
||||||
extern const unsigned int kFlutterWindowHeight;
|
|
||||||
|
|
||||||
#endif // WINDOW_CONFIGURATION_
|
|
Loading…
Reference in New Issue