Skip to content

Commit

Permalink
feat: add timetable frame
Browse files Browse the repository at this point in the history
  • Loading branch information
callasio committed Oct 2, 2024
1 parent 948b4bb commit 4b5c7df
Show file tree
Hide file tree
Showing 6 changed files with 430 additions and 13 deletions.
12 changes: 12 additions & 0 deletions android/app/src/main/res/drawable/dotted_guideline.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape
android:shape="line">
<stroke
android:width="1dp"
android:color="@color/guideline"
android:dashWidth="1.66dp"
android:dashGap="1.66dp" />
</shape>
</item>
</layer-list>
5 changes: 5 additions & 0 deletions android/app/src/main/res/drawable/solid_guideline.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<size android:height="1dp" />
<solid android:color="@color/guideline" />
</shape>
Loading

0 comments on commit 4b5c7df

Please sign in to comment.