├── .gitattributes ├── .gitignore ├── ImproveMauiToolbarItems.sln ├── README.MD ├── result.gif └── src ├── App.xaml ├── App.xaml.cs ├── AppShell.xaml ├── AppShell.xaml.cs ├── ImproveMauiToolbarItems.csproj ├── MainPage.xaml ├── MainPage.xaml.cs ├── MauiProgram.cs ├── Platforms ├── Android │ ├── AndroidManifest.xml │ ├── MainActivity.cs │ ├── MainApplication.cs │ └── Resources │ │ └── values │ │ └── colors.xml ├── MacCatalyst │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── Info.plist │ └── Program.cs ├── Tizen │ ├── Main.cs │ └── tizen-manifest.xml ├── Windows │ ├── App.xaml │ ├── App.xaml.cs │ ├── Package.appxmanifest │ └── app.manifest └── iOS │ ├── AppDelegate.cs │ ├── Handlers │ └── ContentPageHandler.cs │ ├── Info.plist │ ├── Program.cs │ └── Resources │ └── PrivacyInfo.xcprivacy ├── Properties └── launchSettings.json └── Resources ├── AppIcon ├── appicon.svg └── appiconfg.svg ├── Fonts ├── FluentUI.cs ├── OpenSans-Regular.ttf └── OpenSans-Semibold.ttf ├── Images ├── add.png ├── cupertino_ellipsis.svg └── dotnet_bot.png ├── Raw └── AboutAssets.txt ├── Splash └── splash.svg └── Styles ├── Colors.xaml └── Styles.xaml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/.gitignore -------------------------------------------------------------------------------- /ImproveMauiToolbarItems.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/ImproveMauiToolbarItems.sln -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/README.MD -------------------------------------------------------------------------------- /result.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/result.gif -------------------------------------------------------------------------------- /src/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/App.xaml -------------------------------------------------------------------------------- /src/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/App.xaml.cs -------------------------------------------------------------------------------- /src/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/AppShell.xaml -------------------------------------------------------------------------------- /src/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/AppShell.xaml.cs -------------------------------------------------------------------------------- /src/ImproveMauiToolbarItems.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/ImproveMauiToolbarItems.csproj -------------------------------------------------------------------------------- /src/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/MainPage.xaml -------------------------------------------------------------------------------- /src/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/MauiProgram.cs -------------------------------------------------------------------------------- /src/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /src/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /src/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /src/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /src/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /src/Platforms/MacCatalyst/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Platforms/MacCatalyst/Entitlements.plist -------------------------------------------------------------------------------- /src/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /src/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /src/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /src/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /src/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /src/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /src/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /src/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /src/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /src/Platforms/iOS/Handlers/ContentPageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Platforms/iOS/Handlers/ContentPageHandler.cs -------------------------------------------------------------------------------- /src/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /src/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /src/Platforms/iOS/Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Platforms/iOS/Resources/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /src/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /src/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /src/Resources/Fonts/FluentUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Resources/Fonts/FluentUI.cs -------------------------------------------------------------------------------- /src/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /src/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /src/Resources/Images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Resources/Images/add.png -------------------------------------------------------------------------------- /src/Resources/Images/cupertino_ellipsis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Resources/Images/cupertino_ellipsis.svg -------------------------------------------------------------------------------- /src/Resources/Images/dotnet_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Resources/Images/dotnet_bot.png -------------------------------------------------------------------------------- /src/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /src/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /src/Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /src/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhrastegari/ImproveMauiToolbarItems/HEAD/src/Resources/Styles/Styles.xaml --------------------------------------------------------------------------------