Мне нужно сделать что-то вроде наклейки на изображении.Я хочу, чтобы это было перетаскиваемым, масштабируемым и вращающимся.Возможно ли это с флаттером?
Я обнаружил, что класс перетаскивается на https://stackoverflow.com/a/53957707/1984747
Widget build(BuildContext context) {
return Stack(
children: <Widget>[
Positioned(
left: position.dx,
//top: position.dy - height + 20,
child: Draggable(
child: Container(
width: width,
height: height,
color: Colors.blue,
child: Center(child: Text("Drag", style: Theme.of(context).textTheme.headline,),),
),
feedback: Container(
child: Center(
child: Text("Drag", style: Theme.of(context).textTheme.headline,),),
color: Colors.red[800],
width: width,
height: height,
),
onDraggableCanceled: (Velocity velocity, Offset offset){
setState(() => position = offset);
},
),
),
],
);
}
Пожалуйста, немного подсказок.