forked from yaso_meth/mih-project
change height to 500
This commit is contained in:
@@ -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,
|
||||
),
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user