I have a picture on the application interface that will be modified by drag and drop, is there a way in the flutter to save on the device after editing when I press the button?
@override
Widget build(BuildContext context) {
final animation = Tween<double>(begin: 0, end: 1).animate(_controller);
return Scaffold(
body: Container(
width: double.infinity,
height: double.infinity,
color: Colors.white,
child: Stack(
children: <Widget>[
Container(
padding: EdgeInsets.only(top: 40),
alignment: Alignment.topCenter,
child: Column(
children: <Widget>[
Image.asset('image/07.png', width: 400, height: 400),
],
),
),