This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Widget _buildPersistentDrawer(UserProfile userProfile, ScreenSize screenSize) { | |
final drawerWidth = screenSize == ScreenSize.desktop ? 320.0 : 280.0; | |
final drawerGradient = gradientFromBrandStrong(userProfile.brandColor); | |
return SizedBox( | |
width: drawerWidth, | |
child: Container( | |
decoration: BoxDecoration(gradient: drawerGradient), | |
child: ListView( | |
padding: EdgeInsets.zero, |