<!-- Thank you for using Flutter! If you are looking for support, please check out our documentation or consider asking a question on Stack Overflow: * https://flutter.dev/ * https://api.flutter.dev/ * https://stackoverflow.com/questions/tagged/flutter?sort=frequent If you have found a bug or if our documentation doesn't have an answer to what you're looking for, then fill out the template below. Please read our guide to filing a bug first: https://flutter.dev/docs/resources/bug-reports --> ## Use case NavigationRail is built for big screens, so when we use one, we may want to space it evenly, so it looks better. <!-- Please tell us the problem you are running into that led to you wanting a new feature. Is your feature request related to a problem? Please give a clear and concise description of what the problem is. Describe the alternative solutions you've considered. Is there a package on pub.dev/flutter that already solves this? --> ## Proposal Add a mainAxisAlignment parameter to NavigationRail's constructor, and pass it to [the underlying column.](https://github.com/flutter/flutter/blob/94d9b02debb9a83b5df559edb5736ff83663ea31/packages/flutter/lib/src/material/navigation_rail.dart#L418) <!-- Briefly but precisely describe what you would like Flutter to be able to do. Consider attaching something showing what you are imagining: * images * videos * code samples Does this have to be provided by Flutter directly, or can it be provided by a package on pub.dev/flutter? If so, maybe consider implementing and publishing such a package rather than filing a bug. -->
Use case
NavigationRail is built for big screens, so when we use one, we may want to space it evenly, so it looks better.
Proposal
Add a mainAxisAlignment parameter to NavigationRail's constructor, and pass it to the underlying column.