Skip to content

Commit 4e3f364

Browse files
Merge pull request #1227 from flutter-form-builder-ecosystem/macos-support
Macos support
2 parents 78cc3f4 + 5c67a36 commit 4e3f364

29 files changed

+1227
-9
lines changed

.github/workflows/base.yaml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@ on:
1414
jobs:
1515
build:
1616
runs-on: macos-latest
17-
strategy:
18-
fail-fast: false
19-
matrix:
20-
channel: [stable, beta]
2117

2218
steps:
2319
- uses: actions/checkout@v3
@@ -30,7 +26,7 @@ jobs:
3026
- name: Flutter action
3127
uses: subosito/flutter-action@v2
3228
with:
33-
channel: ${{ matrix.channel }}
29+
channel: 'stable'
3430

3531
- name: Install dependencies
3632
run: flutter pub get
@@ -41,7 +37,6 @@ jobs:
4137
- name: Run tests
4238
run: flutter test --coverage
4339
- name: Upload coverage to Codecov
44-
if: ${{ matrix.channel == 'stable' }}
4540
uses: codecov/codecov-action@v3
4641
with:
4742
files: coverage/lcov.info

example/.metadata

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# This file should be version controlled.
55

66
version:
7-
revision: 12cb4eb7a009f52b347b62ade7cb4854b926af72
7+
revision: f72efea43c3013323d1b95cff571f3c1caa37583
88
channel: stable
99

1010
project_type: app
@@ -13,8 +13,11 @@ project_type: app
1313
migration:
1414
platforms:
1515
- platform: root
16-
create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
17-
base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
16+
create_revision: f72efea43c3013323d1b95cff571f3c1caa37583
17+
base_revision: f72efea43c3013323d1b95cff571f3c1caa37583
18+
- platform: macos
19+
create_revision: f72efea43c3013323d1b95cff571f3c1caa37583
20+
base_revision: f72efea43c3013323d1b95cff571f3c1caa37583
1821
- platform: linux
1922
create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
2023
base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1

example/macos/.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Flutter-related
2+
**/Flutter/ephemeral/
3+
**/Pods/
4+
5+
# Xcode-related
6+
**/dgph
7+
**/xcuserdata/
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#include "ephemeral/Flutter-Generated.xcconfig"
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#include "ephemeral/Flutter-Generated.xcconfig"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
//
2+
// Generated file. Do not edit.
3+
//
4+
5+
import FlutterMacOS
6+
import Foundation
7+
8+
9+
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
10+
}

0 commit comments

Comments
 (0)