Closed lalitjarwal closed 4 years ago
This is the code
Widget build(BuildContext context) { return InnerDrawer( colorTransitionChild: Colors.transparent, onTapClose: true, // tapScaffoldEnabled: true, boxShadow: [BoxShadow(color: Colors.grey)], //proportionalChildArea: false, //borderRadius: 12, innerDrawerCallback: (isOpened) { _isOpen = isOpened; print(_isOpen); }, swipe: true, scale: IDOffset.horizontal(1), colorTransitionScaffold: Colors.transparent, offset: IDOffset.horizontal(0.15), key: key, rightChild: Container( color: Colors.white, ), scaffold: Scaffold( appBar: AppBar( leading: null, elevation: 1, title: Text('flutter.dart.lang'), actions: [ IconButton( icon: Icon(Icons.menu), onPressed: () { key.currentState.toggle(); }) ], ), )); }```
@lalitjarwal do this
scaffold: Scaffold( appBar: AppBar( automaticallyImplyLeading: false ), )
Yeah it worked for me. Thanks
This is the code