【发布时间】:2019-01-24 01:55:37
【问题描述】:
我是一位经验丰富的 iOS 开发人员,但对 Flutter 完全陌生。现在我在 Flutter 中遇到了 ScrollView 的问题。
我想要实现的是构建一个大的可滚动画布。我之前在iOS上做过,你可以在这里看到截图。
canvas 是一个很大的 UIScrollView,canvas 上的每个 subview 都是可拖动的,所以我可以随意放置。即使文本很长,我也可以滚动画布以查看全部内容。现在我需要使用 Flutter 做同样的事情。
目前,我只能在 Flutter 中拖动文本小部件。但父小部件不可滚动。我知道我需要在 Flutter 中使用可滚动的小部件来获得相同的结果,但我就是无法让它工作。这是我目前拥有的代码。
void main() {
//debugPaintLayerBordersEnabled = true;
//debugPaintSizeEnabled = true;
runApp(new MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Flutter Demo',
theme: new ThemeData(
primarySwatch: Colors.indigo,
),
home: new MyHomePage(title: 'Flutter Demo Drag Box'),
);
}
}
class MyHomePage extends StatelessWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
title: new Text(title),
),
body: DragBox(Offset(0.0, 0.0)));
}
}
class DragBox extends StatefulWidget {
final Offset position; // widget's position
DragBox(this.position);
@override
_DragBoxState createState() => new _DragBoxState();
}
class _DragBoxState extends State<DragBox> {
Offset _previousOffset;
Offset _offset;
Offset _position;
@override
void initState() {
_offset = Offset.zero;
_previousOffset = Offset.zero;
_position = widget.position;
super.initState();
}
@override
Widget build(BuildContext context) {
return new Container(
constraints: BoxConstraints.expand(),
color: Colors.white24,
child: Stack(
children: <Widget>[
buildDraggableBox(1, Colors.red, _offset)
],
)
);
}
Widget buildDraggableBox(int boxNumber, Color color, Offset offset) {
print('buildDraggableBox $boxNumber !');
return new Stack(
children: <Widget>[
new Positioned(
left: _position.dx,
top: _position.dy,
child: Draggable(
child: _buildBox(color, offset),
feedback: _buildBox(color, offset),
//childWhenDragging: _buildBox(color, offset, onlyBorder: true),
onDragStarted: () {
print('Drag started !');
setState(() {
_previousOffset = _offset;
});
print('Start position: $_position}');
},
onDragCompleted: () {
print('Drag complete !');
},
onDraggableCanceled: (Velocity velocity, Offset offset) {
// update position here
setState(() {
Offset _offset = Offset(offset.dx, offset.dy - 80);
_position = _offset;
print('Drag canceled position: $_position');
});
},
),
)
],
);
}
Widget _buildBox(Color color, Offset offset, {bool onlyBorder: false}) {
return new Container(
child: new Text('Flutter widget',
textAlign: TextAlign.center,
style: new TextStyle(fontWeight: FontWeight.bold, fontSize: 25.0)),
);
}
}
任何建议或代码示例都会对我很有帮助。
PS:请忘记屏幕截图上的标尺,这对我来说不是最重要的。我现在只需要一个大的可滚动画布。
【问题讨论】:
-
“大”是什么意思?
-
@creativecreatorormaybenot ah,我的错。只是意味着滚动视图将几乎占据整个屏幕。我会修正措辞。
-
你可以将你的视图包装成一个 SingleChildScollView
标签: ios uiscrollview flutter flutter-layout