This repository was archived by the owner on Feb 22, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +5
-11
lines changed
packages/file_selector/file_selector_linux Expand file tree Collapse file tree 5 files changed +5
-11
lines changed Original file line number Diff line number Diff line change 33.flutter-plugins
44.flutter-plugins-dependencies
55pubspec.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
22
33* Adds ` getDirectoryPaths ` implementation.
44
Original file line number Diff line number Diff line change @@ -21,13 +21,9 @@ class GetMultipleDirectoriesPage extends StatelessWidget {
2121 // Operation was canceled by the user.
2222 return ;
2323 }
24- String paths = '' ;
25- for (final String ? path in directoryPaths) {
26- paths += '${path !} \n ' ;
27- }
2824 await showDialog <void >(
2925 context: context,
30- builder: (BuildContext context) => TextDisplay (paths ),
26+ builder: (BuildContext context) => TextDisplay (directoryPaths. join ( ' \n ' ) ),
3127 );
3228 }
3329
Original file line number Diff line number Diff line change 1+ CMakeCache.txt
2+ CMakeFiles /
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: file_selector_linux
22description : Liunx implementation of the file_selector plugin.
33repository : https://github.com/flutter/plugins/tree/main/packages/file_selector/file_selector_linux
44issue_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
66
77environment :
88 sdk : " >=2.12.0 <3.0.0"
You can’t perform that action at this time.
0 commit comments