Browse Source

Texto para indicar que hacer con los botones

gilberto.cancel 3 years ago
parent
commit
08da3700ce
1 changed files with 2 additions and 4 deletions
  1. 2
    4
      screens/main/StateTime.js

+ 2
- 4
screens/main/StateTime.js View File

205
     return(
205
     return(
206
       <TouchableWithoutFeedback style={styles.stdcontainer}>
206
       <TouchableWithoutFeedback style={styles.stdcontainer}>
207
         <ImageBackground style={styles.regcontainer} source={require('../../assets/yellow-white.jpg')}>
207
         <ImageBackground style={styles.regcontainer} source={require('../../assets/yellow-white.jpg')}>
208
+          <Text style={styles.time_text}> Select the Start and End Time for the Appointment </Text>
208
         <Button style={styles.cenregbutton} title="8:00am" onPress={() => this.time_set(1,)}/>
209
         <Button style={styles.cenregbutton} title="8:00am" onPress={() => this.time_set(1,)}/>
209
         <Button style={styles.cenregbutton} title="9:00am" onPress={() => this.time_set(2,)}/>
210
         <Button style={styles.cenregbutton} title="9:00am" onPress={() => this.time_set(2,)}/>
210
         <Button style={styles.cenregbutton} title="10:00am" onPress={() => this.time_set(3,)}/>
211
         <Button style={styles.cenregbutton} title="10:00am" onPress={() => this.time_set(3,)}/>
212
         <Button style={styles.cenregbutton} title="12:00pm" onPress={() => this.time_set(5,)}/>
213
         <Button style={styles.cenregbutton} title="12:00pm" onPress={() => this.time_set(5,)}/>
213
         <Button style={styles.cenregbutton} title="1:00pm" onPress={() => this.time_set(6,)}/>
214
         <Button style={styles.cenregbutton} title="1:00pm" onPress={() => this.time_set(6,)}/>
214
         <Button style={styles.cenregbutton} title="2:00pm" onPress={() => this.time_set(7,)}/>
215
         <Button style={styles.cenregbutton} title="2:00pm" onPress={() => this.time_set(7,)}/>
215
-        <Button style={styles.cenregbutton} title="Request Appointment" onPress={() => this.time_assignment()}/>
216
+        <Button style={styles.regbutton} title="Request Appointment" onPress={() => this.time_assignment()}/>
216
         </ImageBackground>
217
         </ImageBackground>
217
       </TouchableWithoutFeedback>
218
       </TouchableWithoutFeedback>
218
     );
219
     );
219
-  }
220
-}
221
-
222
 
220