Skip to content

Commit 64d04d0

Browse files
committed
Updated the README.md
1 parent 246a017 commit 64d04d0

File tree

3 files changed

+36
-12
lines changed

3 files changed

+36
-12
lines changed

README.md

+19-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
1-
# Plantly
2-
A concept app that I made with Flutter, [inspired by this](https://www.uplabs.com/posts/planlty-browse-buy-plants).
1+
# Plantly: buy plants.
2+
A concept app that I made with Flutter, inspired by this:
33

4-
![App ui](media/plantly_app_concept.gif) (original concept)
4+
![App ui](media/plantly_app_concept.gif)
55

6-
## Screenshots of the app
6+
Wanna try it? Here's the Play store link: [Plantly](https://play.google.com/store/apps/details?id=com.skuu.plantly).
7+
8+
## Final result
9+
<img src="media/playstore_screenshot_2_small.png" width="600">
10+
11+
12+
## Screenshots
713
- Main page (plants list)<br>
814
<img src="media/screenshots/flutter_01.png" width="200">
915

@@ -17,4 +23,12 @@ A concept app that I made with Flutter, [inspired by this](https://www.uplabs.co
1723
<img src="media/screenshots/flutter_04.png" width="200">
1824

1925
- Cart page with items<br>
20-
<img src="media/screenshots/flutter_05.png" width="200">
26+
<img src="media/screenshots/flutter_05.png" width="200">
27+
28+
29+
## What I've learned by doing this project
30+
- Make more beautiful shadows
31+
- Used the image_zoom package
32+
- I can round the corners of the whole app (:mindblown:)
33+
- Make the app fullscreen (hide the notification bar and softkeys)
34+
- _You should always backup the key file you used to sign the apk if you still want to update it..._

android/app/build.gradle

+17-7
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ if (flutterRoot == null) {
1414
apply plugin: 'com.android.application'
1515
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
1616

17+
def keystorePropertiesFile = rootProject.file("key.properties")
18+
def keystoreProperties = new Properties()
19+
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
20+
1721
android {
1822
compileSdkVersion 27
1923

@@ -31,13 +35,19 @@ android {
3135
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
3236
}
3337

34-
buildTypes {
35-
release {
36-
// TODO: Add your own signing config for the release build.
37-
// Signing with the debug keys for now, so `flutter run --release` works.
38-
signingConfig signingConfigs.debug
39-
}
40-
}
38+
signingConfigs {
39+
release {
40+
keyAlias keystoreProperties['keyAlias']
41+
keyPassword keystoreProperties['keyPassword']
42+
storeFile file(keystoreProperties['storeFile'])
43+
storePassword keystoreProperties['storePassword']
44+
}
45+
}
46+
buildTypes {
47+
release {
48+
signingConfig signingConfigs.release
49+
}
50+
}
4151
}
4252

4353
flutter {
543 KB
Loading

0 commit comments

Comments
 (0)