rn-auryc-sdk
Version:
React native bridge library for Auryc SDK
48 lines (41 loc) • 1.71 kB
text/xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:paddingTop="@dimen/feedback_row_padding">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/cellTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="@color/feedbackTitle"
android:gravity="center"
android:textStyle="normal"
android:textSize="17sp"
android:paddingStart="@dimen/feedback_row_padding"
android:paddingEnd="@dimen/feedback_row_padding"
tools:ignore="RtlSymmetry"
>
</androidx.appcompat.widget.AppCompatTextView>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center">
<RatingBar
android:id="@+id/auryc_feedback_star_rate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:numStars="5"
android:max="5"
android:stepSize="1.0"
android:theme="@style/RatingBar"/>
</LinearLayout>
</LinearLayout>
</LinearLayout>