You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a drawer in my flutter application. There I have multiple ListTiles. From the ListTiles, I open PDFs using this plugin. But when I open a pdf, close it and reopen it, it just doesn't show the pdf. Just a grey screen.
Here's how I implemented the ListTiles: ListTile( title: Text('PDF'), onTap: () { Navigator.pop(context); function(); }, ),
In the console, I get the error Each child must be laid out exactly once.
The text was updated successfully, but these errors were encountered:
I have a drawer in my flutter application. There I have multiple ListTiles. From the ListTiles, I open PDFs using this plugin. But when I open a pdf, close it and reopen it, it just doesn't show the pdf. Just a grey screen.
Here's how I implemented the ListTiles:
ListTile( title: Text('PDF'), onTap: () { Navigator.pop(context); function(); }, ),
In the console, I get the error
Each child must be laid out exactly once.
The text was updated successfully, but these errors were encountered: