We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19c647f commit 9c64b6eCopy full SHA for 9c64b6e
source/community/reactnative/package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "adaptivecards-reactnative",
3
"description": "AdaptiveCards implementation in ReactNative",
4
- "version": "2.2.31",
+ "version": "2.2.32",
5
"keywords": [
6
"adaptivecards",
7
"cards",
source/community/reactnative/src/components/actions/action-button.js
@@ -226,7 +226,10 @@ export class ActionButton extends React.Component {
226
style={[styles.buttonIcon, this.styleConfig.actionIcon]}
227
/>
228
) : null}
229
- <Text numberOfLines={1} style={this.getButtonTitleStyles()}>
+ <Text
230
+ numberOfLines={1}
231
+ maxFontSizeMultiplier={this.props.maxFontSizeMultiplier}
232
+ style={this.getButtonTitleStyles()}>
233
{this.title}
234
</Text>
235
</View>
0 commit comments