add text analyse en cours

This commit is contained in:
Valentin CZERYBA 2024-07-08 23:37:27 +02:00
parent 216c403625
commit 9781490fa5

View File

@ -52,7 +52,10 @@ class DisplayPictureScreenState extends State<DisplayPictureScreen> {
appBar: AppBar(title: const Text('Display the Picture')),
// The image is stored as a file on the device. Use the `Image.file`
// constructor with the given path to display the image.
body: Image.file(File(widget.imagePath)),
);
body: SingleChildScrollView(
child: Column(children: <Widget>[
Image.file(File(widget.imagePath)),
Text("Analyse en cours...")
])));
}
}