@@ -64,7 +64,7 @@ const BiteTransfer = (props) => {
64
64
// Indicator of how to arrange screen elements based on orientation
65
65
let dimension = isPortrait ? 'column' : 'row'
66
66
// Rendering variables
67
- let textFontSize = '3.5vh '
67
+ let textFontSize = '3.0vh '
68
68
69
69
// Get min and max distance to mouth
70
70
const minDistanceToMouth = 1 // cm
@@ -227,9 +227,9 @@ const BiteTransfer = (props) => {
227
227
const speedParameterIdsAndDescriptions = useMemo (
228
228
( ) => [
229
229
[ moveToMouthSpeedId , 'Approach Speed (cm/s)' ] ,
230
- [ moveToMouthSpeedNearMouthId , 'Approach Speed Near Mouth (cm/s)' ] ,
230
+ [ moveToMouthSpeedNearMouthId , 'Approach Near Mouth (cm/s)' ] ,
231
231
[ moveFromMouthSpeedId , 'Retreat Speed (cm/s)' ] ,
232
- [ moveFromMouthSpeedNearMouthId , 'Retreat Speed Near Mouth (cm/s)' ]
232
+ [ moveFromMouthSpeedNearMouthId , 'Retreat Near Mouth (cm/s)' ]
233
233
] ,
234
234
[ moveToMouthSpeedId , moveToMouthSpeedNearMouthId , moveFromMouthSpeedId , moveFromMouthSpeedNearMouthId ]
235
235
)
@@ -264,7 +264,7 @@ const BiteTransfer = (props) => {
264
264
>
265
265
< View
266
266
style = { {
267
- flex : 8 ,
267
+ flex : 16 ,
268
268
flexDirection : 'column' ,
269
269
justifyContent : 'center' ,
270
270
alignItems : 'center' ,
@@ -335,7 +335,7 @@ const BiteTransfer = (props) => {
335
335
</ View >
336
336
< View
337
337
style = { {
338
- flex : 8 ,
338
+ flex : 5 ,
339
339
flexDirection : 'column' ,
340
340
justifyContent : 'center' ,
341
341
alignItems : 'center' ,
@@ -366,14 +366,14 @@ const BiteTransfer = (props) => {
366
366
Move To Mouth
367
367
</ Button >
368
368
</ View >
369
- < View
369
+ { /* <View
370
370
style={{
371
371
flex: 1,
372
372
justifyContent: 'center',
373
373
alignItems: 'center',
374
374
width: '100%'
375
375
}}
376
- />
376
+ /> */ }
377
377
< View
378
378
style = { {
379
379
flex : 1 ,
@@ -397,14 +397,14 @@ const BiteTransfer = (props) => {
397
397
Move From Mouth
398
398
</ Button >
399
399
</ View >
400
- < View
400
+ { /* <View
401
401
style={{
402
402
flex: 1,
403
403
justifyContent: 'center',
404
404
alignItems: 'center',
405
405
width: '100%'
406
406
}}
407
- />
407
+ /> */ }
408
408
</ View >
409
409
</ View >
410
410
)
0 commit comments