Skip to content

Instantly share code, notes, and snippets.

View Jolugba's full-sized avatar
👨‍💻
Coding

Esther Jolugba Jolugba

👨‍💻
Coding
View GitHub Profile
@Jolugba
Jolugba / Drawer
Created October 20, 2025 12:37
Lawpavilion Elite
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,