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

@ -49,10 +49,13 @@ class DisplayPictureScreenState extends State<DisplayPictureScreen> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
appBar: AppBar(title: const Text('Display the Picture')), appBar: AppBar(title: const Text('Display the Picture')),
// The image is stored as a file on the device. Use the `Image.file` // The image is stored as a file on the device. Use the `Image.file`
// constructor with the given path to display the image. // 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...")
])));
} }
} }