UNPKG

react-native-payment-gateway

Version:

this module for payment gateway, first gateway is midtrans payment gateway, i hope all payment gateway so you can contribute to this module

64 lines (54 loc) 2.51 kB
<?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="match_parent" android:layout_marginLeft="@dimen/sixteen_dp" android:layout_marginRight="@dimen/sixteen_dp" android:layout_marginTop="@dimen/sixteen_dp" android:orientation="vertical"> <LinearLayout style="@style/RoundedNotification" android:layout_width="match_parent" android:layout_height="wrap_content"> <TextView android:layout_width="wrap_content" android:layout_height="match_parent" android:text="@string/info_gopay_account" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="@dimen/thirtytwo_dp" android:orientation="horizontal"> <android.support.design.widget.TextInputLayout android:id="@+id/container_input_country_code" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1"> <android.support.design.widget.TextInputEditText android:id="@+id/edit_country_code" android:layout_width="match_parent" android:layout_height="wrap_content" android:digits="0123456789+" android:hint="@string/country_code" android:inputType="number" android:text="@string/country_code_default" android:textSize="@dimen/sixteen_sp" /> </android.support.design.widget.TextInputLayout> <android.support.design.widget.TextInputLayout android:id="@+id/container_input_phone_number" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="3" android:focusable="true" android:focusableInTouchMode="true"> <android.support.design.widget.TextInputEditText android:id="@+id/edit_phone_number" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="@string/hint_gopay_phone_number" android:inputType="number" android:textSize="@dimen/sixteen_sp" /> </android.support.design.widget.TextInputLayout> </LinearLayout> </LinearLayout>