add text analyse en cours
This commit is contained in:
parent
216c403625
commit
9781490fa5
@ -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...")
|
||||||
|
])));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user