You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, could you please either revert the current behavior or make it configurable so that the BottomBar's child can overlap the SafeArea? I need the option to allow the child in the BottomBar to cover the bottom area (SafeArea(bottom: false...)).
This would greatly help with layout flexibility. Thanks!
Hi, could you please either revert the current behavior or make it configurable so that the BottomBar's child can overlap the SafeArea? I need the option to allow the child in the BottomBar to cover the bottom area (SafeArea(bottom: false...)).
This would greatly help with layout flexibility. Thanks!
child: SafeArea( child: Padding( padding: EdgeInsets.all(widget.offset), child: SlideTransition( position: _offsetAnimation, child: Container( width: widget.width, decoration: widget.barDecoration ?? BoxDecoration( color: widget.barColor, borderRadius: widget.borderRadius, ), child: Material( color: widget.barColor, child: widget.child, borderRadius: widget.borderRadius, ),
The text was updated successfully, but these errors were encountered: