├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── images ├── NavbarAnimation2.mp4 ├── android_navbaranimation_2.mp4 ├── android_navbaranimation_2.webp ├── iphone_navbaranimation_2.mp4 ├── iphone_navbaranimation_2.webp └── navbaranimation_original.gif └── src ├── .DS_Store ├── NavbarAnimation.Maui ├── App.xaml ├── App.xaml.cs ├── AppShell.xaml ├── AppShell.xaml.cs ├── MauiProgram.cs ├── NavbarAnimation.Maui.csproj ├── Platforms │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ └── Resources │ │ │ └── values │ │ │ └── colors.xml │ ├── MacCatalyst │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs │ ├── Tizen │ │ ├── Main.cs │ │ └── tizen-manifest.xml │ ├── Windows │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Package.appxmanifest │ │ └── app.manifest │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs ├── Properties │ └── launchSettings.json ├── Resources │ ├── AppIcon │ │ ├── appicon.svg │ │ └── appiconfg.svg │ ├── Fonts │ │ ├── Fredoka-SemiBold.ttf │ │ ├── OpenSans-Regular.ttf │ │ └── OpenSans-Semibold.ttf │ ├── Images │ │ ├── dotnet_bot.svg │ │ ├── icon_apps.png │ │ ├── icon_books.png │ │ ├── icon_games.png │ │ ├── icon_movies.png │ │ └── icon_search.png │ ├── Raw │ │ └── AboutAssets.txt │ ├── Splash │ │ └── splash.svg │ └── Styles │ │ ├── Colors.xaml │ │ └── Styles.xaml ├── TabBarEventArgs.cs └── Views │ ├── Controls │ ├── TabBarLayer.xaml │ ├── TabBarLayer.xaml.cs │ ├── TabBarView.xaml │ └── TabBarView.xaml.cs │ └── Pages │ ├── AppsPage.xaml │ ├── AppsPage.xaml.cs │ ├── BooksPage.xaml │ ├── BooksPage.xaml.cs │ ├── GamesPage.xaml │ ├── GamesPage.xaml.cs │ ├── MoviesPage.xaml │ ├── MoviesPage.xaml.cs │ ├── SearchPage.xaml │ └── SearchPage.xaml.cs └── NavbarAnimation2.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/README.md -------------------------------------------------------------------------------- /images/NavbarAnimation2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/images/NavbarAnimation2.mp4 -------------------------------------------------------------------------------- /images/android_navbaranimation_2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/images/android_navbaranimation_2.mp4 -------------------------------------------------------------------------------- /images/android_navbaranimation_2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/images/android_navbaranimation_2.webp -------------------------------------------------------------------------------- /images/iphone_navbaranimation_2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/images/iphone_navbaranimation_2.mp4 -------------------------------------------------------------------------------- /images/iphone_navbaranimation_2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/images/iphone_navbaranimation_2.webp -------------------------------------------------------------------------------- /images/navbaranimation_original.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/images/navbaranimation_original.gif -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/App.xaml -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/App.xaml.cs -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/AppShell.xaml -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/AppShell.xaml.cs -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/MauiProgram.cs -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/NavbarAnimation.Maui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/NavbarAnimation.Maui.csproj -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Resources/Fonts/Fredoka-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Resources/Fonts/Fredoka-SemiBold.ttf -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Resources/Images/icon_apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Resources/Images/icon_apps.png -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Resources/Images/icon_books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Resources/Images/icon_books.png -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Resources/Images/icon_games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Resources/Images/icon_games.png -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Resources/Images/icon_movies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Resources/Images/icon_movies.png -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Resources/Images/icon_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Resources/Images/icon_search.png -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Resources/Styles/Styles.xaml -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/TabBarEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/TabBarEventArgs.cs -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Views/Controls/TabBarLayer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Views/Controls/TabBarLayer.xaml -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Views/Controls/TabBarLayer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Views/Controls/TabBarLayer.xaml.cs -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Views/Controls/TabBarView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Views/Controls/TabBarView.xaml -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Views/Controls/TabBarView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Views/Controls/TabBarView.xaml.cs -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Views/Pages/AppsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Views/Pages/AppsPage.xaml -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Views/Pages/AppsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Views/Pages/AppsPage.xaml.cs -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Views/Pages/BooksPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Views/Pages/BooksPage.xaml -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Views/Pages/BooksPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Views/Pages/BooksPage.xaml.cs -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Views/Pages/GamesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Views/Pages/GamesPage.xaml -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Views/Pages/GamesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Views/Pages/GamesPage.xaml.cs -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Views/Pages/MoviesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Views/Pages/MoviesPage.xaml -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Views/Pages/MoviesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Views/Pages/MoviesPage.xaml.cs -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Views/Pages/SearchPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Views/Pages/SearchPage.xaml -------------------------------------------------------------------------------- /src/NavbarAnimation.Maui/Views/Pages/SearchPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation.Maui/Views/Pages/SearchPage.xaml.cs -------------------------------------------------------------------------------- /src/NavbarAnimation2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadekVyM/Navbar-Animation-2/HEAD/src/NavbarAnimation2.sln --------------------------------------------------------------------------------