change height to 500

This commit is contained in:
2024-08-24 06:48:11 +02:00
parent 2b4cf224cc
commit d91e97b772
2 changed files with 5 additions and 5 deletions

View File

@@ -304,7 +304,7 @@ class _BuildFilesListState extends State<BuildFilesList> {
Widget build(BuildContext context) {
if (widget.files.isNotEmpty) {
return SizedBox(
height: 290.0,
height: 500.0,
child: ListView.separated(
shrinkWrap: true,
separatorBuilder: (BuildContext context, int index) {
@@ -354,10 +354,10 @@ class _BuildFilesListState extends State<BuildFilesList> {
);
} else {
return const SizedBox(
height: 290.0,
height: 500.0,
child: Center(
child: Text(
"No Files Available",
"No Documents Available",
style: TextStyle(fontSize: 25, color: Colors.grey),
textAlign: TextAlign.center,
),

View File

@@ -265,7 +265,7 @@ class _BuildNotesListState extends State<BuildNotesList> {
Widget build(BuildContext context) {
if (widget.notes.isNotEmpty) {
return SizedBox(
height: 290.0,
height: 500.0,
child: ListView.separated(
shrinkWrap: true,
separatorBuilder: (BuildContext context, int index) {
@@ -307,7 +307,7 @@ class _BuildNotesListState extends State<BuildNotesList> {
);
} else {
return const SizedBox(
height: 290.0,
height: 500.0,
child: Center(
child: Text(
"No Notes Available",