drawer/sections_outline: scroll to current section
honestly don't know how to do that, need to check out CustomScrollView and related stuff.
Andre [at]PixelToast 16:50 @nanowang first off create a ScrollController in your state and pass it to the widget you are using for scrolling (ListView, SingleChildScrollView, etc)
Andre [at]PixelToast 17:07 @nanowang if it's easy to calculate the offset you need just use controller.animateTo(x) if the offset is unpredictable the best lead i could find for getting a position of a widget in a callback is RenderBox box = context.findRenderObject(); but the widget must have been built already i gtg
@pixeltoast sorry for the mentioning. just realized github would do that automatically