Last active
July 24, 2020 04:24
-
-
Save ShaiqAhmedkhan/8d86b429d5d0a21f664749dbcfe41e3f 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/cupertino.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter_navigation_rail_demo/details.dart'; | |
class HomeScreen extends StatefulWidget { | |
HomeScreen({Key key}) : super(key: key); | |
@override | |
_HomeScreenState createState() => _HomeScreenState(); | |
} | |
class _HomeScreenState extends State<HomeScreen> { | |
int _selectedIndex = 0; | |
NavigationRailDestination textDestination( | |
String text,) { | |
return NavigationRailDestination( | |
icon: SizedBox.shrink(), | |
label: Padding( | |
padding: EdgeInsets.symmetric(vertical: 8), | |
child: RotatedBox( | |
quarterTurns: -1, | |
child: Text(text), | |
), | |
), | |
); | |
} | |
@override | |
Widget build(BuildContext context) { | |
return SafeArea( | |
child: Scaffold( | |
body: Row( | |
children: <Widget>[ | |
NavigationRail( | |
minWidth: 55.0, | |
groupAlignment: 0.0, | |
backgroundColor: Colors.blueGrey, | |
selectedIndex: _selectedIndex, | |
onDestinationSelected: (int index) { | |
setState(() { | |
_selectedIndex = index; | |
}); | |
}, | |
labelType: NavigationRailLabelType.all, | |
leading: Column( | |
children: <Widget>[ | |
SizedBox( | |
height: 8, | |
), | |
Center( | |
child: CircleAvatar( | |
radius: 22, | |
backgroundImage: AssetImage("assets/images/man2.jpg"), | |
), | |
), | |
SizedBox( | |
height: 70, | |
), | |
RotatedBox( | |
quarterTurns: -1, | |
child: Icon(Icons.dashboard,color: Color(0xffFCCFA8), | |
), | |
), | |
SizedBox( | |
height: 15, | |
), | |
RotatedBox( | |
quarterTurns: -1, | |
child: Icon(Icons.date_range), | |
) | |
], | |
), | |
selectedLabelTextStyle: TextStyle( | |
color: Colors.orangeAccent, | |
fontSize: 14, | |
letterSpacing: 1, | |
decorationThickness: 2.0, | |
), | |
unselectedLabelTextStyle: TextStyle( | |
fontSize: 13, | |
letterSpacing: 0.8, | |
), | |
destinations: [ | |
textDestination("Trending",), | |
textDestination("Latest",), | |
textDestination("Favourites"), | |
textDestination("All", ), | |
], | |
), | |
Details(_selectedIndex) | |
], | |
), | |
), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment