├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md └── src ├── .DS_Store ├── App.xaml ├── App.xaml.cs ├── Controls ├── VerticalGuage.xaml └── VerticalGuage.xaml.cs ├── Converters └── BMIOpacityConverter.cs ├── GlobalUsings.cs ├── MauiBMICalculator.csproj ├── MauiBMICalculator.sln ├── MauiProgram.cs ├── Platforms ├── Android │ ├── AndroidManifest.xml │ ├── MainActivity.cs │ ├── MainApplication.cs │ └── Resources │ │ └── values │ │ └── colors.xml └── iOS │ ├── AppDelegate.cs │ ├── Info.plist │ └── Program.cs ├── Properties └── launchSettings.json ├── Resources ├── .DS_Store ├── AppIcon │ ├── appicon.svg │ └── applogo.png ├── Fonts │ ├── DMSans-Medium.ttf │ └── DMSans-Regular.ttf ├── Images │ ├── checkedicon.png │ ├── dotnet_bot.svg │ ├── female.png │ ├── male.png │ └── nextbutton.png ├── Raw │ └── AboutAssets.txt └── Splash │ └── appsplash.png ├── ViewModels ├── StartPageViewModel.cs └── Step2PageViewModel.cs └── Views ├── ResultsPage.xaml ├── ResultsPage.xaml.cs ├── StartPage.xaml ├── StartPage.xaml.cs ├── Step2Page.xaml └── Step2Page.xaml.cs /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/README.md -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/App.xaml -------------------------------------------------------------------------------- /src/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/App.xaml.cs -------------------------------------------------------------------------------- /src/Controls/VerticalGuage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Controls/VerticalGuage.xaml -------------------------------------------------------------------------------- /src/Controls/VerticalGuage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Controls/VerticalGuage.xaml.cs -------------------------------------------------------------------------------- /src/Converters/BMIOpacityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Converters/BMIOpacityConverter.cs -------------------------------------------------------------------------------- /src/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/GlobalUsings.cs -------------------------------------------------------------------------------- /src/MauiBMICalculator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/MauiBMICalculator.csproj -------------------------------------------------------------------------------- /src/MauiBMICalculator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/MauiBMICalculator.sln -------------------------------------------------------------------------------- /src/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/MauiProgram.cs -------------------------------------------------------------------------------- /src/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /src/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /src/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /src/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /src/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /src/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /src/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /src/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Resources/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Resources/.DS_Store -------------------------------------------------------------------------------- /src/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /src/Resources/AppIcon/applogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Resources/AppIcon/applogo.png -------------------------------------------------------------------------------- /src/Resources/Fonts/DMSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Resources/Fonts/DMSans-Medium.ttf -------------------------------------------------------------------------------- /src/Resources/Fonts/DMSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Resources/Fonts/DMSans-Regular.ttf -------------------------------------------------------------------------------- /src/Resources/Images/checkedicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Resources/Images/checkedicon.png -------------------------------------------------------------------------------- /src/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /src/Resources/Images/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Resources/Images/female.png -------------------------------------------------------------------------------- /src/Resources/Images/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Resources/Images/male.png -------------------------------------------------------------------------------- /src/Resources/Images/nextbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Resources/Images/nextbutton.png -------------------------------------------------------------------------------- /src/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /src/Resources/Splash/appsplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Resources/Splash/appsplash.png -------------------------------------------------------------------------------- /src/ViewModels/StartPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/ViewModels/StartPageViewModel.cs -------------------------------------------------------------------------------- /src/ViewModels/Step2PageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/ViewModels/Step2PageViewModel.cs -------------------------------------------------------------------------------- /src/Views/ResultsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Views/ResultsPage.xaml -------------------------------------------------------------------------------- /src/Views/ResultsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Views/ResultsPage.xaml.cs -------------------------------------------------------------------------------- /src/Views/StartPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Views/StartPage.xaml -------------------------------------------------------------------------------- /src/Views/StartPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Views/StartPage.xaml.cs -------------------------------------------------------------------------------- /src/Views/Step2Page.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Views/Step2Page.xaml -------------------------------------------------------------------------------- /src/Views/Step2Page.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naweed/MauiBMICalculator/HEAD/src/Views/Step2Page.xaml.cs --------------------------------------------------------------------------------