Created
July 30, 2019 14:39
-
-
Save Ayyagaries/5618ef0591e09fb00443e66fcfdb8f89 to your computer and use it in GitHub Desktop.
view
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Alloy> | |
<View class="rx_container" id="wrapper"> | |
<Require type="widget" src="com.mcongrove.navigationBar" id="NavigationBar" /> | |
<View layout="vertical"> | |
<ScrollView layout="vertical" height="Ti.UI.SIZE" > | |
<View class="rx_box vw_form" layout="vertical" id="main_box" top="0" height="90%" > | |
<Label id="lbl_facility_name" class="heading" text="Facility Name" block="no"/> | |
<Label id="lbl_facility_address" textAlign="center" block="no"/> | |
<View class="rx_box" id="fn_ln_box" layout="vertical" height="Ti.UI.SIZE" top="3%" block="yes"> | |
<Label text="Who will you be meeting with?" left="0" bottom="2%" class="boldText"/> | |
<View class="vw_row" id="vw_row_fn" top="2%" left="0" inner_block="yes" /> | |
<View class="vw_row" id="vw_row_ln" left="0" inner_block="yes"/> | |
</View> | |
<View class="rx_box" id="location_purpose_box" layout="vertical" height="Ti.UI.SIZE" top="2%" block="yes"> | |
<Label text="Admittance criteria" left="0" bottom="2%" class="boldText"/> | |
<View class="vw_row" id="vw_row_dept" top="2%" left="0" inner_block="yes"/> | |
<View class="vw_row" id="vw_row_purpose" left="0" inner_block="yes"/> | |
</View> | |
<View class="rx_box" layout="vertical" top="2%" block="no" height="Ti.UI.SIZE" > | |
<Label text="Duration of visit" left="0" bottom="2%" class="boldText"/> | |
<View layout="horizontal" height="Ti.UI.SIZE" > | |
<View class="vw_row_drop_down" top="2%" onClick="setHours"> | |
<Label class="lbl_alert_hour_min" id="lbl_hours" text="0 hr"/> | |
</View> | |
<View class="vw_row_drop_down"> | |
<Label class="lbl_alert_hour_min" id="lbl_min" text="0 min" onClick="setMin"/> | |
</View> | |
</View> | |
</ScrollView> | |
</View> | |
<View class="rx_full_btn_holder"> | |
<View class="rx_full_btn" id="btn_check_in"> | |
<View class="rx_full_btn_lbl_holder"> | |
<Label class="rx_full_btn_text" text="Check In" /> | |
</View> | |
</View> | |
</View> | |
</View> | |
</Alloy> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment