Skip to content

Commit f19d888

Browse files
committed
UI
1 parent c9a69cc commit f19d888

6 files changed

Lines changed: 18 additions & 9 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@
1313
.externalNativeBuild
1414
.cxx
1515
local.properties
16+
/app/release

.idea/misc.xml

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ android {
1212
minSdk = 24
1313
targetSdk = 35
1414
versionCode = 1
15-
versionName = "1.0"
15+
versionName = "0.0.1"
1616

1717
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
1818
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="24dp" android:tint="#000000" android:viewportHeight="24" android:viewportWidth="24" android:width="24dp">
2+
3+
<path android:fillColor="@android:color/white" android:pathData="M21.81,12.74l-0.82,-0.63v-0.22l0.8,-0.63c0.16,-0.12 0.2,-0.34 0.1,-0.51l-0.85,-1.48c-0.07,-0.13 -0.21,-0.2 -0.35,-0.2 -0.05,0 -0.1,0.01 -0.15,0.03l-0.95,0.38c-0.08,-0.05 -0.11,-0.07 -0.19,-0.11l-0.15,-1.01c-0.03,-0.21 -0.2,-0.36 -0.4,-0.36h-1.71c-0.2,0 -0.37,0.15 -0.4,0.34l-0.14,1.01c-0.03,0.02 -0.07,0.03 -0.1,0.05l-0.09,0.06 -0.95,-0.38c-0.05,-0.02 -0.1,-0.03 -0.15,-0.03 -0.14,0 -0.27,0.07 -0.35,0.2l-0.85,1.48c-0.1,0.17 -0.06,0.39 0.1,0.51l0.8,0.63v0.23l-0.8,0.63c-0.16,0.12 -0.2,0.34 -0.1,0.51l0.85,1.48c0.07,0.13 0.21,0.2 0.35,0.2 0.05,0 0.1,-0.01 0.15,-0.03l0.95,-0.37c0.08,0.05 0.12,0.07 0.2,0.11l0.15,1.01c0.03,0.2 0.2,0.34 0.4,0.34h1.71c0.2,0 0.37,-0.15 0.4,-0.34l0.15,-1.01c0.03,-0.02 0.07,-0.03 0.1,-0.05l0.09,-0.06 0.95,0.38c0.05,0.02 0.1,0.03 0.15,0.03 0.14,0 0.27,-0.07 0.35,-0.2l0.85,-1.48c0.1,-0.17 0.06,-0.39 -0.1,-0.51zM18,13.5c-0.83,0 -1.5,-0.67 -1.5,-1.5s0.67,-1.5 1.5,-1.5 1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.5zM17,17h2v4c0,1.1 -0.9,2 -2,2H7c-1.1,0 -2,-0.9 -2,-2V3c0,-1.1 0.9,-2 2,-2h10c1.1,0 2,0.9 2,2v4h-2V6H7v12h10v-1z"/>
4+
5+
</vector>

app/src/main/res/layout/fragment_config.xml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,38 +10,42 @@
1010
android:layout_height="wrap_content"
1111
android:gravity="center"
1212
android:text="@string/presets"
13-
android:textSize="16sp"
14-
android:textColor="@color/black" />
13+
android:textColor="@color/blue_700"
14+
android:textSize="16sp" />
1515

1616
<LinearLayout
1717
android:layout_width="match_parent"
1818
android:layout_height="wrap_content"
1919
android:orientation="horizontal"
20-
android:gravity="center">
20+
android:gravity="center"
21+
android:padding="8dp">
2122

2223
<Button
2324
android:id="@+id/select_all_button"
2425
android:layout_width="wrap_content"
2526
android:layout_height="wrap_content"
27+
android:layout_margin="4dp"
2628
android:background="@drawable/button_outline"
2729
android:text="@string/all"
28-
android:textColor="@color/button_text_color" />
30+
android:textColor="@color/blue_500" />
2931

3032
<Button
3133
android:id="@+id/select_none_button"
3234
android:layout_width="wrap_content"
3335
android:layout_height="wrap_content"
36+
android:layout_margin="4dp"
3437
android:background="@drawable/button_outline"
3538
android:text="@string/none"
36-
android:textColor="@color/button_text_color" />
39+
android:textColor="@color/blue_500" />
3740

3841
<Button
3942
android:id="@+id/select_cordova_button"
4043
android:layout_width="wrap_content"
4144
android:layout_height="wrap_content"
45+
android:layout_margin="4dp"
4246
android:background="@drawable/button_outline"
4347
android:text="@string/cordova"
44-
android:textColor="@color/button_text_color" />
48+
android:textColor="@color/blue_500" />
4549

4650
</LinearLayout>
4751

app/src/main/res/menu/bottom_nav_menu.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<item
1010
android:id="@+id/navigation_config"
11-
android:icon="@drawable/ic_dashboard_black_24dp"
11+
android:icon="@drawable/ic_baseline_app_settings_alt_24"
1212
android:title="@string/title_config" />
1313

1414
</menu>

0 commit comments

Comments
 (0)