Created
April 15, 2019 01:25
-
-
Save ckdevrel/bf378a4d886cba6823adca7549c0a843 to your computer and use it in GitHub Desktop.
This file contains 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 TextIconTabBarLineIndicatorHorizontal extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return Column( | |
mainAxisAlignment: MainAxisAlignment.end, | |
crossAxisAlignment: CrossAxisAlignment.start, | |
children: <Widget>[ | |
TabBar( | |
indicator: UnderlineTabIndicator( | |
borderSide: BorderSide(width: 2, color: Colors.white), | |
), | |
labelColor: Colors.white, | |
labelStyle: TextStyle(decorationColor: Colors.grey), | |
unselectedLabelColor: Colors.white54, | |
tabs: [ | |
ConstrainedBox( | |
constraints: BoxConstraints.expand(height: 40), | |
child: Center( | |
child: Row( | |
mainAxisAlignment: MainAxisAlignment.center, | |
mainAxisSize: MainAxisSize.max, | |
crossAxisAlignment: CrossAxisAlignment.center, | |
children: <Widget>[ | |
Icon(Icons.person_outline), | |
SizedBox(width: 10), | |
Text('Login') | |
], | |
))), | |
ConstrainedBox( | |
constraints: BoxConstraints.expand(height: 40), | |
child: Row( | |
mainAxisAlignment: MainAxisAlignment.center, | |
mainAxisSize: MainAxisSize.max, | |
crossAxisAlignment: CrossAxisAlignment.center, | |
children: <Widget>[ | |
Icon(Icons.people_outline), | |
SizedBox(width: 10), | |
Text('Signup') | |
], | |
)), | |
], | |
) | |
], | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment