feature/ai-image #4

Merged
v4l3n71n merged 9 commits from feature/ai-image into main 2024-07-17 20:56:08 +00:00
Showing only changes of commit 9781490fa5 - Show all commits

View File

@ -52,7 +52,10 @@ class DisplayPictureScreenState extends State<DisplayPictureScreen> {
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...")
])));
} }
} }