fix(rn,bottomsheet) limit width

This commit is contained in:
Saúl Ibarra Corretgé 2021-03-16 09:54:22 +01:00 committed by Saúl Ibarra Corretgé
parent 8defaa9aec
commit 0dcb8a025b
1 changed files with 5 additions and 1 deletions

View File

@ -43,7 +43,11 @@ export const bottomSheetStyles = {
alignItems: 'stretch',
flex: 1,
flexDirection: 'column',
justifyContent: 'flex-end'
justifyContent: 'flex-end',
maxWidth: 500,
marginLeft: 'auto',
marginRight: 'auto',
width: '100%'
},
sheetItemContainer: {