https://github.com/stormlion227/snavigation.forms
You can put any controls on NavigationBar.
https://github.com/stormlion227/snavigation.forms
Last synced: 3 months ago
JSON representation
You can put any controls on NavigationBar.
- Host: GitHub
- URL: https://github.com/stormlion227/snavigation.forms
- Owner: stormlion227
- License: mit
- Created: 2018-02-11T02:09:06.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-15T03:36:49.000Z (over 7 years ago)
- Last Synced: 2025-04-19T16:11:46.172Z (6 months ago)
- Language: C#
- Homepage:
- Size: 3.2 MB
- Stars: 16
- Watchers: 6
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# SNavigation.Forms
SNavigation(Xamarin.Forms) allows you to put any elements on navigation bar.
[](https://www.nuget.org/packages/SNavigation.Forms/)
Supports Android and iOS.
## Screen-Shots
![]()
## Setup
* Install the [nuget package](https://www.nuget.org/packages/SNavigation.Forms) in portable and all platform specific projects.
### Android
In MainActivity.cs file
```cs
Stormlion.SNavigation.Droid.Platform.Init(this);
```### iOS
In AppDelegate.cs file
```cs
Stormlion.SNavigation.iOS.Platform.Init();
```
## Usage```cs
MainPage = new SNavigationPage(new Page1())
{
BarBackgroundColor = Color.SkyBlue,
};
``````xaml
...
```
```xaml
...
```
## Contributions
Contributions are welcome!