Skip to content

Commit

Permalink
actions test
Browse files Browse the repository at this point in the history
  • Loading branch information
Alispezzate committed Mar 14, 2022
1 parent 04a3442 commit 24b3976
Show file tree
Hide file tree
Showing 6 changed files with 64 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build-and-release-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
flutter-version: '2.10.0'
- name: Install project dependencies
run: flutter pub get
- name: Export Release Timestamp
run: echo "APP_VERSION=v$(date +'%Y.%m.%d.%H.%m.%S')" >> $GITHUB_ENV
- name: Enable macOS build
run: flutter config --enable-macos-desktop
- name: Build artifacts
Expand Down
13 changes: 13 additions & 0 deletions ios/Flutter/Generated.xcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// This is a generated file; do not edit or check into version control.
FLUTTER_ROOT=E:\disco d\flutter_windows_2.2.3-stable\flutter
FLUTTER_APPLICATION_PATH=E:\flutter\garen_gui
COCOAPODS_PARALLEL_CODE_SIGN=true
FLUTTER_TARGET=lib\main.dart
FLUTTER_BUILD_DIR=build
FLUTTER_BUILD_NAME=1.0.0
FLUTTER_BUILD_NUMBER=1
EXCLUDED_ARCHS[sdk=iphonesimulator*]=i386
DART_OBFUSCATION=false
TRACK_WIDGET_CREATION=false
TREE_SHAKE_ICONS=false
PACKAGE_CONFIG=.packages
13 changes: 13 additions & 0 deletions ios/Flutter/flutter_export_environment.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/sh
# This is a generated file; do not edit or check into version control.
export "FLUTTER_ROOT=E:\disco d\flutter_windows_2.2.3-stable\flutter"
export "FLUTTER_APPLICATION_PATH=E:\flutter\garen_gui"
export "COCOAPODS_PARALLEL_CODE_SIGN=true"
export "FLUTTER_TARGET=lib\main.dart"
export "FLUTTER_BUILD_DIR=build"
export "FLUTTER_BUILD_NAME=1.0.0"
export "FLUTTER_BUILD_NUMBER=1"
export "DART_OBFUSCATION=false"
export "TRACK_WIDGET_CREATION=false"
export "TREE_SHAKE_ICONS=false"
export "PACKAGE_CONFIG=.packages"
19 changes: 19 additions & 0 deletions ios/Runner/GeneratedPluginRegistrant.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
//
// Generated file. Do not edit.
//

// clang-format off

#ifndef GeneratedPluginRegistrant_h
#define GeneratedPluginRegistrant_h

#import <Flutter/Flutter.h>

NS_ASSUME_NONNULL_BEGIN

@interface GeneratedPluginRegistrant : NSObject
+ (void)registerWithRegistry:(NSObject<FlutterPluginRegistry>*)registry;
@end

NS_ASSUME_NONNULL_END
#endif /* GeneratedPluginRegistrant_h */
14 changes: 14 additions & 0 deletions ios/Runner/GeneratedPluginRegistrant.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
//
// Generated file. Do not edit.
//

// clang-format off

#import "GeneratedPluginRegistrant.h"

@implementation GeneratedPluginRegistrant

+ (void)registerWithRegistry:(NSObject<FlutterPluginRegistry>*)registry {
}

@end
6 changes: 3 additions & 3 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Future<void> main() async {
appWindow.show();
windowManager.setAlwaysOnTop(true);
Window.setEffect(
effect: WindowEffect.transparent,
effect: WindowEffect.aero,
);
});
}
Expand Down Expand Up @@ -108,14 +108,14 @@ class _MyHomePageState extends State<MyHomePage> {
child: Stack(
children: [
Container(
color: Color.fromARGB(110, 0, 0, 0),
color: Color.fromARGB(70, 0, 0, 0),
),
MoveWindow(),
],
)),
Expanded(
child: Scaffold(
backgroundColor: Color.fromARGB(70, 0, 0, 0),
backgroundColor: Color.fromARGB(20, 0, 0, 0),
body: Container(
padding:
const EdgeInsets.only(left: 10.0, right: 10.0, top: 1.0),
Expand Down

0 comments on commit 24b3976

Please sign in to comment.