Created
November 15, 2021 18:58
-
-
Save guilhermecarvalhocarneiro/6e037c0da9a4b9d332079de2f233ea5c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
return SingleChildScrollView( | |
child: Container( | |
margin: const EdgeInsets.only(top: 115, bottom: 15), | |
child: Column( | |
mainAxisAlignment: MainAxisAlignment.start, | |
crossAxisAlignment: CrossAxisAlignment.start, | |
children: [ | |
Text("Imagens"), | |
_buildImagesGrid(laudosImagensExameList), | |
Text("PDF's"), | |
_buildPDFGrid(laudosExameList), | |
], | |
), | |
), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment