├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── .metadata ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-playstore.png │ │ ├── kotlin │ │ │ └── bored │ │ │ │ └── codebyk │ │ │ │ └── mintcalc │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ ├── ic_launcher_foreground.xml │ │ │ ├── ic_launcher_monochrome.xml │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_monochrome.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── ic_launcher_background.xml │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── github-mark-white.svg └── github-mark.svg ├── fonts └── Manrope │ └── Manrope-Regular.ttf ├── lib ├── main.dart ├── models │ └── settings_model.dart └── pages │ ├── calc │ ├── date_calc.dart │ ├── scientific_calc.dart │ └── standard_calc.dart │ ├── conv │ ├── angle_conv.dart │ ├── area_conv.dart │ ├── data_conv.dart │ ├── energy_conv.dart │ ├── length_conv.dart │ ├── mass_conv.dart │ ├── power_conv.dart │ ├── pressure_conv.dart │ ├── speed_conv.dart │ ├── temp_conv.dart │ ├── time_conv.dart │ └── volume_conv.dart │ ├── pages.dart │ └── settings_page.dart ├── metadata └── en-US │ ├── changelogs │ ├── 100.txt │ ├── 110.txt │ └── 111.txt │ ├── full_description.txt │ ├── images │ ├── icon.png │ └── phoneScreenshots │ │ ├── 1.png │ │ ├── 2.png │ │ └── 3.png │ └── short_description.txt ├── pubspec.lock ├── pubspec.yaml └── test └── widget_test.dart /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/.gitmodules -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/.metadata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /android/app/src/main/kotlin/bored/codebyk/mintcalc/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/kotlin/bored/codebyk/mintcalc/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_monochrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/drawable/ic_launcher_monochrome.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/github-mark-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/assets/github-mark-white.svg -------------------------------------------------------------------------------- /assets/github-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/assets/github-mark.svg -------------------------------------------------------------------------------- /fonts/Manrope/Manrope-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/fonts/Manrope/Manrope-Regular.ttf -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/models/settings_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/lib/models/settings_model.dart -------------------------------------------------------------------------------- /lib/pages/calc/date_calc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/lib/pages/calc/date_calc.dart -------------------------------------------------------------------------------- /lib/pages/calc/scientific_calc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/lib/pages/calc/scientific_calc.dart -------------------------------------------------------------------------------- /lib/pages/calc/standard_calc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/lib/pages/calc/standard_calc.dart -------------------------------------------------------------------------------- /lib/pages/conv/angle_conv.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/lib/pages/conv/angle_conv.dart -------------------------------------------------------------------------------- /lib/pages/conv/area_conv.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/lib/pages/conv/area_conv.dart -------------------------------------------------------------------------------- /lib/pages/conv/data_conv.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/lib/pages/conv/data_conv.dart -------------------------------------------------------------------------------- /lib/pages/conv/energy_conv.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/lib/pages/conv/energy_conv.dart -------------------------------------------------------------------------------- /lib/pages/conv/length_conv.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/lib/pages/conv/length_conv.dart -------------------------------------------------------------------------------- /lib/pages/conv/mass_conv.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/lib/pages/conv/mass_conv.dart -------------------------------------------------------------------------------- /lib/pages/conv/power_conv.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/lib/pages/conv/power_conv.dart -------------------------------------------------------------------------------- /lib/pages/conv/pressure_conv.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/lib/pages/conv/pressure_conv.dart -------------------------------------------------------------------------------- /lib/pages/conv/speed_conv.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/lib/pages/conv/speed_conv.dart -------------------------------------------------------------------------------- /lib/pages/conv/temp_conv.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/lib/pages/conv/temp_conv.dart -------------------------------------------------------------------------------- /lib/pages/conv/time_conv.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/lib/pages/conv/time_conv.dart -------------------------------------------------------------------------------- /lib/pages/conv/volume_conv.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/lib/pages/conv/volume_conv.dart -------------------------------------------------------------------------------- /lib/pages/pages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/lib/pages/pages.dart -------------------------------------------------------------------------------- /lib/pages/settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/lib/pages/settings_page.dart -------------------------------------------------------------------------------- /metadata/en-US/changelogs/100.txt: -------------------------------------------------------------------------------- 1 | First release -------------------------------------------------------------------------------- /metadata/en-US/changelogs/110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/metadata/en-US/changelogs/110.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/111.txt: -------------------------------------------------------------------------------- 1 | - Added and fixed haptic feedback -------------------------------------------------------------------------------- /metadata/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/metadata/en-US/full_description.txt -------------------------------------------------------------------------------- /metadata/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/metadata/en-US/images/icon.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/metadata/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/metadata/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/metadata/en-US/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /metadata/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/metadata/en-US/short_description.txt -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredcodebyk/mintcalc/HEAD/test/widget_test.dart --------------------------------------------------------------------------------