diff --git a/lib/screens/graph_view.dart b/lib/screens/graph_view.dart index e8b878cc..158217dd 100644 --- a/lib/screens/graph_view.dart +++ b/lib/screens/graph_view.dart @@ -112,24 +112,32 @@ class _GraphViewState extends State { children.add(w); } + var view = Container( + width: 2500, + height: 2500, + child: Stack( + children: children, + fit: StackFit.expand, + ), + ); + + return InteractiveViewer( + child: view, + ); + + /* return Scrollbar( child: SingleChildScrollView( child: Scrollbar( child: SingleChildScrollView( - child: Container( - width: 2500, - height: 2500, - child: Stack( - children: children, - fit: StackFit.expand, - ), - ), + child: view, scrollDirection: Axis.horizontal, ), ), scrollDirection: Axis.vertical, ), ); + */ } }