mirror of
https://gitlab.futo.org/videostreaming/grayjay.git
synced 2026-05-16 04:52:39 +02:00
23 lines
899 B
XML
23 lines
899 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:orientation="horizontal">
|
|
<TextView
|
|
android:id="@+id/bullet_point"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/white"
|
|
android:fontFamily="@font/inter_light"
|
|
android:layout_marginEnd="10dp"
|
|
android:text="•"
|
|
tools:ignore="HardcodedText" />
|
|
<TextView
|
|
android:id="@+id/bullet_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/white"
|
|
android:fontFamily="@font/inter_light"
|
|
tools:text="someurl.com" />
|
|
</LinearLayout> |