Created
January 3, 2019 13:41
-
-
Save shubie/7d2efb1165f1b96e4fbe893c394cd23f to your computer and use it in GitHub Desktop.
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
| import 'package:flutter/material.dart'; | |
| class AppDrawer extends StatefulWidget { | |
| @override | |
| _AppDrawerState createState() => _AppDrawerState(); | |
| } | |
| class _AppDrawerState extends State<AppDrawer> { | |
| @override | |
| Widget build(BuildContext context) { | |
| return SizedBox( | |
| width: 160.0, | |
| child: Drawer( | |
| child: Column( | |
| crossAxisAlignment: CrossAxisAlignment.center, | |
| children: <Widget>[ | |
| Padding( | |
| padding: EdgeInsets.only(top: 10.0), | |
| child: FlatButton.icon( | |
| icon: Icon( | |
| Icons.arrow_back, | |
| color: Color(0xFF015FFF), | |
| ), | |
| onPressed: null, | |
| label: Text("Back", | |
| style: TextStyle( | |
| fontWeight: FontWeight.w400, | |
| fontSize: 16.0, | |
| color: Colors.black)), | |
| color: Colors.black, | |
| ), | |
| ), | |
| buildMenuItem(Icons.account_balance, "ACCOUNTS", | |
| opacity: 1.0, color: Color(0xFF015FFF)), | |
| Divider(), | |
| buildMenuItem(Icons.compare_arrows, "TRANSFER"), | |
| Divider(), | |
| buildMenuItem(Icons.receipt, "STATEMENTS"), | |
| Divider(), | |
| buildMenuItem(Icons.attach_money, "PAYMENTS"), | |
| Divider(), | |
| buildMenuItem(Icons.sentiment_satisfied, "INVESTMENTS"), | |
| Divider(), | |
| buildMenuItem(Icons.phone, "SUPPORT"), | |
| Divider() | |
| ], | |
| ), | |
| ), | |
| ); | |
| } | |
| Opacity buildMenuItem(IconData icon, String title, | |
| {double opacity = 0.3, Color color = Colors.black}) { | |
| return Opacity( | |
| opacity: opacity, | |
| child: Center( | |
| child: Column( | |
| children: <Widget>[ | |
| SizedBox( | |
| height: 20.0, | |
| ), | |
| Icon( | |
| icon, | |
| size: 50.0, | |
| color: color, | |
| ), | |
| SizedBox( | |
| height: 10.0, | |
| ), | |
| Text(title, | |
| style: TextStyle( | |
| fontWeight: FontWeight.w500, fontSize: 14.0, color: color)), | |
| SizedBox( | |
| height: 10.0, | |
| ), | |
| ], | |
| ), | |
| ), | |
| ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment