mirror of
https://github.com/oxen-io/session-android.git
synced 2025-12-03 04:22:23 +00:00
Implement rough onboarding redesign
This commit is contained in:
12
res/drawable/default_session_background.xml
Normal file
12
res/drawable/default_session_background.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
|
||||
<gradient
|
||||
android:angle="90"
|
||||
android:startColor="#121212"
|
||||
android:endColor="#171717"
|
||||
android:type="linear" />
|
||||
|
||||
</shape>
|
||||
11
res/drawable/prominent_filled_button_medium_background.xml
Normal file
11
res/drawable/prominent_filled_button_medium_background.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<solid android:color="@color/accent" />
|
||||
|
||||
<corners android:radius="24dp" />
|
||||
|
||||
<stroke android:width="@dimen/border_thickness" android:color="@color/accent" />
|
||||
</shape>
|
||||
11
res/drawable/prominent_outline_button_medium_background.xml
Normal file
11
res/drawable/prominent_outline_button_medium_background.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<solid android:color="@color/transparent" />
|
||||
|
||||
<corners android:radius="24dp" />
|
||||
|
||||
<stroke android:width="@dimen/border_thickness" android:color="@color/accent" />
|
||||
</shape>
|
||||
12
res/drawable/session_edit_text_background.xml
Normal file
12
res/drawable/session_edit_text_background.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
|
||||
<stroke
|
||||
android:color="@color/text"
|
||||
android:width="@dimen/border_thickness" />
|
||||
|
||||
<corners android:radius="@dimen/text_view_corner_radius" />
|
||||
|
||||
</shape>
|
||||
9
res/drawable/session_edit_text_cursor.xml
Normal file
9
res/drawable/session_edit_text_cursor.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape
|
||||
xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
|
||||
<size android:width="2dp" />
|
||||
|
||||
<solid android:color="@color/accent" />
|
||||
|
||||
</shape>
|
||||
12
res/drawable/session_id_text_view_background.xml
Normal file
12
res/drawable/session_id_text_view_background.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
|
||||
<stroke
|
||||
android:color="@color/text"
|
||||
android:width="@dimen/border_thickness" />
|
||||
|
||||
<corners android:radius="@dimen/text_view_corner_radius" />
|
||||
|
||||
</shape>
|
||||
Reference in New Issue
Block a user