RN: не помещается текст в Button при Large Text
Есть 2 кнопки в row. При увеличении шрифта, в настройках телефона, уезжает текст на следующую строку. Чтобы не играться с паддингами текста внутри кнопки (все равно на какой-то точке все поедет), можно ли сделать перенос их в wrap, когда увеличен шрифт?
Default:
Large:
<styled.Footer>
<styled.Controls>
<Button onPress={handleBackClicked} size='normal' title='prev' type='secondary' />
</styled.Controls>
<styled.Controls>
<Button onPress={handleContinueClicked} size='normal' title='next' />
</styled.Controls>
export const Controls = styled.View`
flex: 1;
margin-left: 8px;
margin-right: 8px;
background-color: #0db41b;
`;
export const Footer = styled.View`
background-color: #fa755a;
flex-direction: row;
justify-content: space-between;
`;

