Skip to content

Commit

Permalink
Merge branch 'master' into ver2
Browse files Browse the repository at this point in the history
  • Loading branch information
royarg02 committed Apr 6, 2020
2 parents 4cf1450 + 522d2b3 commit 8762b83
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 20 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
flutter_export_environment.sh
.packages
.pub-cache/
.pub/
Expand Down Expand Up @@ -64,6 +65,7 @@
**/ios/Flutter/flutter_assets/
**/ios/ServiceDefinitions.json
**/ios/Runner/GeneratedPluginRegistrant.*
**ios/Flutter/flutter_export_environment.sh

# Exceptions to above rules.
!**/ios/**/default.mode1v3
Expand All @@ -72,4 +74,5 @@
!**/ios/**/default.perspectivev3
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages

local.properties
local.properties
.flutter-
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SOIF
# <img src="assets/readme/Soif.png" height=100>

[![Codacy Badge](https://api.codacy.com/project/badge/Grade/d94e74bd82544d2389ceda65e810ab96)](https://www.codacy.com/manual/RoyARG02/soil_moisture_app?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=RoyARG02/soil_moisture_app&amp;utm_campaign=Badge_Grade)
[![GitHub Release](https://img.shields.io/badge/release-v1.0.3-blue)](https://github.com/RoyARG02/soil_moisture_app/releases) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/d94e74bd82544d2389ceda65e810ab96)](https://www.codacy.com/manual/RoyARG02/soil_moisture_app?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=RoyARG02/soil_moisture_app&amp;utm_campaign=Badge_Grade) [![GPLv3 License](https://img.shields.io/badge/License-GPL%20v3-yellow.svg)](https://opensource.org/licenses/GPL-3.0)

This is a Flutter project, which will serve as the dashboard for the **Soil Moisture** content of a particular area.

Expand All @@ -11,8 +11,6 @@ Font: [JetBrains Mono](https://github.com/JetBrains/JetBrainsMono)
### Screenshots

<p align = "middle">
<img src="assets/readme/Soif.png" height=100>
<br><br>
<img src="assets/readme/overview.png" height=500>
<img src="assets/readme/analysis_dark.png" height=500>
<br><br>
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:3.5.3'
classpath 'com.android.tools.build:gradle:3.6.1'
}
}

Expand Down
4 changes: 2 additions & 2 deletions android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Oct 07 13:13:11 IST 2019
#Mon Apr 06 13:07:01 IST 2020
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip
10 changes: 0 additions & 10 deletions ios/Flutter/flutter_export_environment.sh

This file was deleted.

3 changes: 2 additions & 1 deletion lib/pages/Credits.dart
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,8 @@ class _CreditsState extends State<Credits> {
strutStyle: StrutStyle(fontSize: 14.0),
text: TextSpan(
style: Theme.of(context).textTheme.body2.copyWith(
color: (Provider.of<ThemeState>(context).isDarkTheme(context))
color: (Provider.of<ThemeState>(context)
.isDarkTheme(context))
? subtleWhiteTextColor
: subtleBlackTextColor,
),
Expand Down
2 changes: 1 addition & 1 deletion lib/utils/app_info.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ loadAppInfo() async {
_appInfo = await PackageInfo.fromPlatform();
}

PackageInfo get getAppInfo => _appInfo;
PackageInfo get getAppInfo => _appInfo;

0 comments on commit 8762b83

Please sign in to comment.