change height to 500
This commit is contained in:
@@ -304,7 +304,7 @@ class _BuildFilesListState extends State<BuildFilesList> {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
if (widget.files.isNotEmpty) {
|
if (widget.files.isNotEmpty) {
|
||||||
return SizedBox(
|
return SizedBox(
|
||||||
height: 290.0,
|
height: 500.0,
|
||||||
child: ListView.separated(
|
child: ListView.separated(
|
||||||
shrinkWrap: true,
|
shrinkWrap: true,
|
||||||
separatorBuilder: (BuildContext context, int index) {
|
separatorBuilder: (BuildContext context, int index) {
|
||||||
@@ -354,10 +354,10 @@ class _BuildFilesListState extends State<BuildFilesList> {
|
|||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
return const SizedBox(
|
return const SizedBox(
|
||||||
height: 290.0,
|
height: 500.0,
|
||||||
child: Center(
|
child: Center(
|
||||||
child: Text(
|
child: Text(
|
||||||
"No Files Available",
|
"No Documents Available",
|
||||||
style: TextStyle(fontSize: 25, color: Colors.grey),
|
style: TextStyle(fontSize: 25, color: Colors.grey),
|
||||||
textAlign: TextAlign.center,
|
textAlign: TextAlign.center,
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -265,7 +265,7 @@ class _BuildNotesListState extends State<BuildNotesList> {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
if (widget.notes.isNotEmpty) {
|
if (widget.notes.isNotEmpty) {
|
||||||
return SizedBox(
|
return SizedBox(
|
||||||
height: 290.0,
|
height: 500.0,
|
||||||
child: ListView.separated(
|
child: ListView.separated(
|
||||||
shrinkWrap: true,
|
shrinkWrap: true,
|
||||||
separatorBuilder: (BuildContext context, int index) {
|
separatorBuilder: (BuildContext context, int index) {
|
||||||
@@ -307,7 +307,7 @@ class _BuildNotesListState extends State<BuildNotesList> {
|
|||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
return const SizedBox(
|
return const SizedBox(
|
||||||
height: 290.0,
|
height: 500.0,
|
||||||
child: Center(
|
child: Center(
|
||||||
child: Text(
|
child: Text(
|
||||||
"No Notes Available",
|
"No Notes Available",
|
||||||
|
|||||||
Reference in New Issue
Block a user