File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import 'package:flutter/material.dart' ;
2- import 'screens/persisted_uris/persisted_uri_list .dart' ;
2+ import 'screens/granted_uris/granted_uris_page .dart' ;
33
44/// TODO: Add examples using [Environment] and [MediaStore] API
55void main () => runApp (const Root ());
@@ -14,6 +14,6 @@ class Root extends StatefulWidget {
1414class _RootState extends State <Root > {
1515 @override
1616 Widget build (BuildContext context) {
17- return const MaterialApp (home: PersistedUriList ());
17+ return const MaterialApp (home: GrantedUrisPage ());
1818 }
1919}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import '../../theme/spacing.dart';
55import '../../widgets/buttons.dart' ;
66import '../../widgets/key_value_text.dart' ;
77import '../../widgets/simple_card.dart' ;
8- import '../folder_files/folder_file_list .dart' ;
8+ import '../file_explorer/file_explorer_page .dart' ;
99
1010class GrantedUriCard extends StatefulWidget {
1111 const GrantedUriCard ({
@@ -50,7 +50,7 @@ class _GrantedUriCardState extends State<GrantedUriCard> {
5050 void _openListFilesPage () {
5151 Navigator .of (context).push (
5252 MaterialPageRoute (
53- builder: (context) => FolderFileList (uri: widget.permissionUri.uri),
53+ builder: (context) => FileExplorerPage (uri: widget.permissionUri.uri),
5454 ),
5555 );
5656 }
You can’t perform that action at this time.
0 commit comments