File tree 4 files changed +17
-9
lines changed
4 files changed +17
-9
lines changed Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ android {
30
30
applicationId " com.mtechviral.fluttermusicplayer"
31
31
minSdkVersion 16
32
32
targetSdkVersion 27
33
- versionCode 2
34
- versionName " 0.0.2 "
33
+ versionCode 3
34
+ versionName " 0.0.3 "
35
35
testInstrumentationRunner " android.support.test.runner.AndroidJUnitRunner"
36
36
}
37
37
Original file line number Diff line number Diff line change 1
1
import 'package:flute_example/data/song_data.dart' ;
2
2
import 'package:flute_example/pages/root_page.dart' ;
3
3
import 'package:flute_example/widgets/mp_inherited.dart' ;
4
- import 'package:flutter/material.dart' ;
5
4
import 'package:flute_music_player/flute_music_player.dart' ;
5
+ import 'package:flutter/material.dart' ;
6
6
7
7
class MyApp extends StatefulWidget {
8
8
@override
@@ -43,7 +43,7 @@ class _MyAppState extends State<MyApp> {
43
43
if (! mounted) return ;
44
44
45
45
setState (() {
46
- songData = new SongData (new List . from (songs));
46
+ songData = new SongData ((songs));
47
47
_isLoading = false ;
48
48
});
49
49
}
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ packages:
28
28
name: barback
29
29
url: "https://pub.dartlang.org"
30
30
source: hosted
31
- version: "0.15.2+15 "
31
+ version: "0.15.2+14 "
32
32
boolean_selector:
33
33
dependency: transitive
34
34
description:
@@ -86,12 +86,12 @@ packages:
86
86
source: hosted
87
87
version: "0.1.1"
88
88
flute_music_player:
89
- dependency: "direct dev "
89
+ dependency: "direct main "
90
90
description:
91
91
name: flute_music_player
92
92
url: "https://pub.dartlang.org"
93
93
source: hosted
94
- version: "0.0.5 "
94
+ version: "0.0.6 "
95
95
flutter:
96
96
dependency: "direct main"
97
97
description: flutter
@@ -200,6 +200,13 @@ packages:
200
200
url: "https://pub.dartlang.org"
201
201
source: hosted
202
202
version: "0.9.6"
203
+ mockito:
204
+ dependency: transitive
205
+ description:
206
+ name: mockito
207
+ url: "https://pub.dartlang.org"
208
+ source: hosted
209
+ version: "2.2.3"
203
210
multi_server_socket:
204
211
dependency: transitive
205
212
description:
@@ -351,7 +358,7 @@ packages:
351
358
name: test
352
359
url: "https://pub.dartlang.org"
353
360
source: hosted
354
- version: "0.12.32+2 "
361
+ version: "0.12.32+1 "
355
362
typed_data:
356
363
dependency: transitive
357
364
description:
Original file line number Diff line number Diff line change @@ -8,12 +8,13 @@ dependencies:
8
8
# The following adds the Cupertino Icons font to your application.
9
9
# Use with the CupertinoIcons class for iOS style icons.
10
10
cupertino_icons : ^0.1.0
11
+ flute_music_player : ^0.0.6
11
12
12
13
dev_dependencies :
13
14
flutter_test :
14
15
sdk : flutter
15
16
16
- flute_music_player : ^0.0.5
17
+
17
18
18
19
# For information on the generic Dart part of this file, see the
19
20
# following page: https://www.dartlang.org/tools/pub/pubspec
You can’t perform that action at this time.
0 commit comments