This repository was archived by the owner on Feb 22, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +3
-11
lines changed
packages/file_selector/file_selector_linux Expand file tree Collapse file tree 4 files changed +3
-11
lines changed Original file line number Diff line number Diff line change 3
3
.flutter-plugins
4
4
.flutter-plugins-dependencies
5
5
pubspec.lock
6
-
7
- # Linux specific
8
- linux /CMakeFiles
9
- linux /CMakeCache.txt
Original file line number Diff line number Diff line change 1
- ## 0.9.0+2
1
+ ## 0.9.1
2
2
3
3
* Adds ` getDirectoryPaths ` implementation.
4
4
Original file line number Diff line number Diff line change @@ -21,13 +21,9 @@ class GetMultipleDirectoriesPage extends StatelessWidget {
21
21
// Operation was canceled by the user.
22
22
return ;
23
23
}
24
- String paths = '' ;
25
- for (final String ? path in directoryPaths) {
26
- paths += '${path !} \n ' ;
27
- }
28
24
await showDialog <void >(
29
25
context: context,
30
- builder: (BuildContext context) => TextDisplay (paths ),
26
+ builder: (BuildContext context) => TextDisplay (directoryPaths. join ( ' \n ' ) ),
31
27
);
32
28
}
33
29
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: file_selector_linux
2
2
description : Liunx implementation of the file_selector plugin.
3
3
repository : https://github.com/flutter/plugins/tree/main/packages/file_selector/file_selector_linux
4
4
issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+file_selector%22
5
- version : 0.9.0+2
5
+ version : 0.9.1
6
6
7
7
environment :
8
8
sdk : " >=2.12.0 <3.0.0"
You can’t perform that action at this time.
0 commit comments