mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-07 13:57:48 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,82 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:custom="http://schemas.android.com/apk/res-auto"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:weightSum="1"
|
||||
android:background="@color/white">
|
||||
|
||||
<ScrollView
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:isScrollContainer="true"
|
||||
android:layout_gravity="bottom">
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:background="@color/white"
|
||||
android:id="@+id/top" >
|
||||
|
||||
<wtf.watrbx.client.components.RbxGenderPicker
|
||||
android:layout_width="375dp"
|
||||
android:layout_height="50dp"
|
||||
android:layout_gravity="center"
|
||||
android:layout_marginTop="100dp"
|
||||
style="@style/Theme.Roblox.StandardFontRegular" />
|
||||
|
||||
<wtf.watrbx.client.components.RbxBirthdayPicker
|
||||
android:layout_width="375dp"
|
||||
android:layout_height="50dp"
|
||||
android:layout_gravity="center"
|
||||
android:layout_marginTop="30dp"
|
||||
style="@style/Theme.Roblox.StandardFontLight" />
|
||||
|
||||
<wtf.watrbx.client.components.RbxButton
|
||||
android:layout_width="250dp"
|
||||
android:layout_height="50dp"
|
||||
android:text="Test Button"
|
||||
android:id="@+id/button"
|
||||
android:layout_gravity="center"
|
||||
android:layout_marginTop="100dp"
|
||||
style="@style/Theme.Roblox.Button.Flat.White" />
|
||||
<wtf.watrbx.client.components.RbxButton
|
||||
android:layout_width="250dp"
|
||||
android:layout_height="100dp"
|
||||
android:text="Longer Test Button"
|
||||
android:id="@+id/button2"
|
||||
android:layout_gravity="center"
|
||||
style="@style/Theme.Roblox.Button.Flat.Blue"
|
||||
android:layout_marginTop="10dp" />
|
||||
<wtf.watrbx.client.components.RbxEditText
|
||||
android:layout_width="250dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
custom:hintText="New password"
|
||||
custom:errorText="Passwords don't match"
|
||||
style="@style/Theme.Roblox.EditText"
|
||||
android:layout_marginTop="10dp" />
|
||||
<wtf.watrbx.client.components.RbxEditText
|
||||
android:layout_width="250dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
custom:hintText="Username"
|
||||
custom:errorText="Username contains invalid characters"
|
||||
custom:hintTextLong="Username (6-20 characters, no spaces)"
|
||||
style="@style/Theme.Roblox.EditText"
|
||||
android:layout_marginTop="30dp"/>
|
||||
<wtf.watrbx.client.components.RbxButton
|
||||
android:layout_width="250dp"
|
||||
android:layout_height="50dp"
|
||||
android:text="Longer Test Button"
|
||||
android:id="@+id/button3"
|
||||
android:layout_gravity="center"
|
||||
style="@style/Theme.Roblox.Button.Flat.Blue"
|
||||
android:layout_marginTop="10dp" />
|
||||
<!--android:fontFamily="sans-serif-light"-->
|
||||
<!--android:textColor="@color/RbxGray3"-->
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
||||
|
||||
</LinearLayout>
|
||||
Reference in New Issue
Block a user