Last active
January 3, 2019 16:48
-
-
Save shubie/ef5d017da678821c6e8d667aa2d49479 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
bottomNavigationBar: BottomAppBar( | |
elevation: 0.0, | |
child: Container( | |
margin: EdgeInsets.symmetric(vertical: 20.0), | |
child: Row( | |
mainAxisSize: MainAxisSize.max, | |
mainAxisAlignment: MainAxisAlignment.spaceAround, | |
children: <Widget>[ | |
FlatButton( | |
padding: | |
EdgeInsets.symmetric(vertical: 12.0, horizontal: 30.0), | |
shape: RoundedRectangleBorder( | |
borderRadius: BorderRadius.circular(0.0)), | |
color: Color(0xFF015FFF), | |
// borderSide: BorderSide(color: Color(0xFF015FFF), width: 1.0), | |
onPressed: () {}, | |
child: Text("ACTIVITY"), | |
), | |
OutlineButton( | |
padding: | |
EdgeInsets.symmetric(vertical: 12.0, horizontal: 28.0), | |
shape: RoundedRectangleBorder( | |
borderRadius: BorderRadius.circular(0.0)), | |
borderSide: BorderSide(color: Color(0xFF015FFF), width: 1.0), | |
onPressed: () {}, | |
child: Text("STATEMENTS"), | |
), | |
OutlineButton( | |
padding: | |
EdgeInsets.symmetric(vertical: 12.0, horizontal: 28.0), | |
shape: RoundedRectangleBorder( | |
borderRadius: BorderRadius.circular(0.0)), | |
borderSide: BorderSide(color: Color(0xFF015FFF), width: 1.0), | |
onPressed: () {}, | |
child: Text("DETAILS"), | |
) | |
], | |
), | |
), | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment