revamp on bloc approach

This commit is contained in:
2024-05-05 15:48:26 +02:00
parent ee6af2bc07
commit f58a2ec8cd
28 changed files with 523 additions and 480 deletions

View File

@ -21,7 +21,7 @@ import 'filesUploadDialog.dart';
class Files extends StatefulWidget {
final List<String> path;
const Files(this.path, {super.key});
Files({List<String>? path, super.key}) : path = path ?? [];
@override
State<Files> createState() => _FilesState();