Skip to content

Commit 039c793

Browse files
authored
Merge pull request #828 from EmreDET/fix-is-finished-bug
Fix the logic of the Center Play Button icon selection
2 parents 1fa89df + ac05d15 commit 039c793

27 files changed

+416
-71
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v4
2222
- name: Flutter Action
2323
uses: subosito/flutter-action@v2
2424
- name: Check format
@@ -30,7 +30,7 @@ jobs:
3030

3131
steps:
3232
- name: Checkout code
33-
uses: actions/checkout@v2
33+
uses: actions/checkout@v4
3434
- name: Flutter Action
3535
uses: subosito/flutter-action@v2
3636
- name: Install Package Dependencies
@@ -41,15 +41,16 @@ jobs:
4141
- name: Lint using flutter analyze
4242
run: flutter analyze .
4343

44-
# test:
45-
# name: Test2
46-
# runs-on: ubuntu-latest
44+
test:
45+
name: Run tests.
46+
runs-on: ubuntu-latest
4747

48-
# steps:
49-
# - name: Checkout code
50-
# uses: actions/checkout@v2
51-
# - uses: subosito/flutter-action@v1
52-
# with:
53-
# channel: beta
54-
# - name: Test
55-
# run: flutter test
48+
steps:
49+
- name: Checkout code
50+
uses: actions/checkout@v4
51+
- name: Flutter Action
52+
uses: subosito/flutter-action@v2
53+
- name: Run flutter test
54+
run: |
55+
flutter pub get
56+
flutter test

example/.metadata

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,27 @@
44
# This file should be version controlled and should not be manually edited.
55

66
version:
7-
revision: ab4506cad2a860e1cb6186c0957eeb86024a7c6b
8-
channel: dev
7+
revision: "b0850beeb25f6d5b10426284f506557f66181b36"
8+
channel: "stable"
9+
10+
project_type: app
11+
12+
# Tracks metadata for the flutter migrate command
13+
migration:
14+
platforms:
15+
- platform: root
16+
create_revision: b0850beeb25f6d5b10426284f506557f66181b36
17+
base_revision: b0850beeb25f6d5b10426284f506557f66181b36
18+
- platform: ios
19+
create_revision: b0850beeb25f6d5b10426284f506557f66181b36
20+
base_revision: b0850beeb25f6d5b10426284f506557f66181b36
21+
22+
# User provided section
23+
24+
# List of Local paths (relative to this file) that should be
25+
# ignored by the migrate tool.
26+
#
27+
# Files that are not part of the templates will be ignored by default.
28+
unmanaged_files:
29+
- 'lib/main.dart'
30+
- 'ios/Runner.xcodeproj/project.pbxproj'

example/ios/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
**/dgph
12
*.mode1v3
23
*.mode2v3
34
*.moved-aside

example/ios/Flutter/AppFrameworkInfo.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
<key>CFBundleVersion</key>
2222
<string>1.0</string>
2323
<key>MinimumOSVersion</key>
24-
<string>11.0</string>
24+
<string>12.0</string>
2525
</dict>
2626
</plist>

example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 222 additions & 42 deletions
Large diffs are not rendered by default.

example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1430"
3+
LastUpgradeVersion = "1510"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"
@@ -27,8 +27,6 @@
2727
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
2828
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
2929
shouldUseLaunchSchemeArgsEnv = "YES">
30-
<Testables>
31-
</Testables>
3230
<MacroExpansion>
3331
<BuildableReference
3432
BuildableIdentifier = "primary"
@@ -38,8 +36,19 @@
3836
ReferencedContainer = "container:Runner.xcodeproj">
3937
</BuildableReference>
4038
</MacroExpansion>
41-
<AdditionalOptions>
42-
</AdditionalOptions>
39+
<Testables>
40+
<TestableReference
41+
skipped = "NO"
42+
parallelizable = "YES">
43+
<BuildableReference
44+
BuildableIdentifier = "primary"
45+
BlueprintIdentifier = "331C8080294A63A400263BE5"
46+
BuildableName = "RunnerTests.xctest"
47+
BlueprintName = "RunnerTests"
48+
ReferencedContainer = "container:Runner.xcodeproj">
49+
</BuildableReference>
50+
</TestableReference>
51+
</Testables>
4352
</TestAction>
4453
<LaunchAction
4554
buildConfiguration = "Debug"
@@ -61,8 +70,6 @@
6170
ReferencedContainer = "container:Runner.xcodeproj">
6271
</BuildableReference>
6372
</BuildableProductRunnable>
64-
<AdditionalOptions>
65-
</AdditionalOptions>
6673
</LaunchAction>
6774
<ProfileAction
6875
buildConfiguration = "Profile"

example/ios/Runner/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import UIKit
21
import Flutter
2+
import UIKit
33

44
@UIApplicationMain
55
@objc class AppDelegate: FlutterAppDelegate {
Loading
Loading
Loading

0 commit comments

Comments
 (0)