This repository has been archived by the owner on Feb 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[file_selector] add getDirectoryPaths implementation on Linux (#6573)
* Add getDirectoriesPaths method to the file_selector_platform_interface Add getDirectoriesPaths to method channel. Increment version to 2.3.0 apply feedback extract assertion method * add getDirectoryPaths Linux implementation * apply rebase * update version to 0.9.1 Co-authored-by: eugerossetto <[email protected]>
- Loading branch information
1 parent
d610a21
commit db4d20c
Showing
11 changed files
with
343 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
84 changes: 84 additions & 0 deletions
84
packages/file_selector/file_selector_linux/example/lib/get_multiple_directories_page.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
// Copyright 2013 The Flutter Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style license that can be | ||
// found in the LICENSE file. | ||
|
||
import 'package:file_selector_platform_interface/file_selector_platform_interface.dart'; | ||
import 'package:flutter/material.dart'; | ||
|
||
/// Screen that allows the user to select one or more directories using `getDirectoryPaths`, | ||
/// then displays the selected directories in a dialog. | ||
class GetMultipleDirectoriesPage extends StatelessWidget { | ||
/// Default Constructor | ||
const GetMultipleDirectoriesPage({Key? key}) : super(key: key); | ||
|
||
Future<void> _getDirectoryPaths(BuildContext context) async { | ||
const String confirmButtonText = 'Choose'; | ||
final List<String> directoryPaths = | ||
await FileSelectorPlatform.instance.getDirectoryPaths( | ||
confirmButtonText: confirmButtonText, | ||
); | ||
if (directoryPaths.isEmpty) { | ||
// Operation was canceled by the user. | ||
return; | ||
} | ||
await showDialog<void>( | ||
context: context, | ||
builder: (BuildContext context) => TextDisplay(directoryPaths.join('\n')), | ||
); | ||
} | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return Scaffold( | ||
appBar: AppBar( | ||
title: const Text('Select multiple directories'), | ||
), | ||
body: Center( | ||
child: Column( | ||
mainAxisAlignment: MainAxisAlignment.center, | ||
children: <Widget>[ | ||
ElevatedButton( | ||
style: ElevatedButton.styleFrom( | ||
// TODO(darrenaustin): Migrate to new API once it lands in stable: https://github.com/flutter/flutter/issues/105724 | ||
// ignore: deprecated_member_use | ||
primary: Colors.blue, | ||
// ignore: deprecated_member_use | ||
onPrimary: Colors.white, | ||
), | ||
child: const Text( | ||
'Press to ask user to choose multiple directories'), | ||
onPressed: () => _getDirectoryPaths(context), | ||
), | ||
], | ||
), | ||
), | ||
); | ||
} | ||
} | ||
|
||
/// Widget that displays a text file in a dialog. | ||
class TextDisplay extends StatelessWidget { | ||
/// Creates a `TextDisplay`. | ||
const TextDisplay(this.directoriesPaths, {Key? key}) : super(key: key); | ||
|
||
/// The path selected in the dialog. | ||
final String directoriesPaths; | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return AlertDialog( | ||
title: const Text('Selected Directories'), | ||
content: Scrollbar( | ||
child: SingleChildScrollView( | ||
child: Text(directoriesPaths), | ||
), | ||
), | ||
actions: <Widget>[ | ||
TextButton( | ||
child: const Text('Close'), | ||
onPressed: () => Navigator.pop(context), | ||
), | ||
], | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
CMakeCache.txt | ||
CMakeFiles/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.