|
|
|
@ -16,7 +16,10 @@ class FilesDetailsPage extends StatelessWidget {
|
|
|
|
|
appBar: AppBar( |
|
|
|
|
title: Text(details.name), |
|
|
|
|
), |
|
|
|
|
body: ListView( |
|
|
|
|
body: Scrollbar( |
|
|
|
|
interactive: true, |
|
|
|
|
child: ListView( |
|
|
|
|
primary: true, |
|
|
|
|
children: [ |
|
|
|
|
ColoredBox( |
|
|
|
|
color: Theme.of(context).colorScheme.primary, |
|
|
|
@ -62,5 +65,6 @@ class FilesDetailsPage extends StatelessWidget {
|
|
|
|
|
), |
|
|
|
|
], |
|
|
|
|
), |
|
|
|
|
), |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|