Replies: 1 comment
-
Sure @partitionce, Just do a pull request with a comment explaining the new feature. I'll test it and then merge it to the repo. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
your sidebar is very nice working.
but when i tap widget.body i want sidebar to collapse.
so I tried modifying collapsible_sidebar code.
class CollapsibleSidebarState extends State
with SingleTickerProviderStateMixin {
//skip
Widget build(BuildContext context) {
Widget page = GestureDetector(
onTap: () {
_isCollapsed = true;
_animateTo(widget.minWidth);
},
child: widget.body,
); //added
it works as i expected
How about adding this feature?
Beta Was this translation helpful? Give feedback.
All reactions